        * {
            box-sizing: border-box;
        }
        
        .center {
            text-align: center;
        }

        :root {
            --primary-gold: #DAA520;
            --dark-gold: #B8860B;
            --light-gold: #F0E68C;
            --dark-gray: #3a3a3a;
            --light-gray: #f8f8f8;
            --white: #ffffff;
            --text-color: #333333;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
            /* text-align: center; */
        }

        body {
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--white);
            color: var(--text-color);
            line-height: 1.6;
            scroll-behavior: smooth;
            font-size: 16px; /* Base font size */
        }

        header {
            background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('./Golden-image/1A2A2325 (1).jpg') no-repeat center center/cover;
            color: var(--white);
            text-align: center;
            padding: 350px 20px;
            position: relative;
        }

        header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem; /* Use rem for scalability */
            margin: 0;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
            animation: gold-shimmer 3s infinite alternate;
        }
        .gold-shimmer {
            font-family: 'Playfair Display', serif;
            font-size: 3rem; /* Use rem for scalability */
            margin: 0;
            text-shadow: 22px 22px 62px rgb(0, 0, 0);
            animation: gold-shimmer 3s infinite alternate;
        }
        header p {
            font-size: 2rem;
            margin: 20px 0 0;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        /* ───────────────────────────────────────────────
           RESPONSIVE HAMBURGER MENU
        ─────────────────────────────────────────────── */

        nav {
            background-color: var(--dark-gray);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .nav-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 60px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 34px;
            height: 24px;
            cursor: pointer;
            z-index: 1100;
            background: transparent;
            border: none;
            padding: 0;
            margin: 0;
            appearance: none;
            -webkit-appearance: none;
            border-radius: 0;
            box-shadow: none;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background-color: var(--primary-gold);
            border-radius: 2px;
            transition: all 0.35s ease;
            display: block;
        }

        .hamburger:hover {
            background: rgba(218, 165, 32, 0.12);
        }

        .hamburger:hover span {
            background-color: #f2d77d;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            width: 100%;
        }

        nav a {
            color: var(--white);
            text-decoration: none;
            padding: 12px 16px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.4px;
            position: relative;
            transition: all 0.3s ease;
            border-radius: 6px;
        }

        nav a:hover {
            color: var(--primary-gold);
            background: rgba(218, 165, 32, 0.1);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--primary-gold);
            bottom: 6px;
            left: 50%;
            transition: all 0.3s ease;
        }

        nav a:hover::after {
            width: 60%;
            left: 20%;
        }

        .litter-btn {
            background: var(--light-gold);
            color: var(--dark-gray);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            margin: 0 8px;
            padding: 10px 24px;
            cursor: pointer;
            position: relative;
            transition: background 0.3s, color 0.3s;
            outline: none;
            overflow: hidden;
        }
        .litter-btn.active {
            background: var(--primary-gold);
            color: var(--dark-gray);
        }
        .litter-btn::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 8px;
            width: 0;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .litter-btn.active::after {
            width: 60%;
            left: 20%;
        }
        .litter-btn:hover {
            background: var(--dark-gold);
            color: var(--white);
        }
        .litter-btn:hover::after {
            width: 60%;
            left: 20%;
        }

        /* Mobile menu styles */
        .menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            z-index: 900;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s step-end;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
            transition: opacity 0.4s ease;
        }

        @media (max-width: 600px) {
            .nav-container {
                justify-content: flex-end;
                position: relative;
                padding: 0 12px;
                min-height: 52px;
                background: transparent;
            }

            .hamburger {
                display: flex;
                z-index: 1100;
                background: transparent;
                border: none;
                padding: 0;
                width: 32px;
                height: 24px;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                width: 100%;
                background: rgba(58, 58, 58, 0.98);
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 0;
                transform: translateY(-8px);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: all 0.25s ease;
                box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
                border-radius: 0;
                z-index: 1050;
                overflow: visible;
            }

            .nav-menu.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateY(0);
            }

            nav a {
                width: 100%;
                margin: 0;
                padding: 18px 18px 16px;
                font-size: 1.15rem;
                border-radius: 0;
                white-space: nowrap;
                text-align: center;
                border-bottom: 1px solid rgba(218, 165, 32, 0.8);
                display: block;
            }

            nav a::after {
                display: none;
            }

            nav a:hover {
                background: rgba(218, 165, 32, 0.12);
                transform: none;
            }
        }

        @media (min-width: 601px) {
            .hamburger {
                display: none !important;
            }

            .nav-menu {
                display: flex !important;
                position: static !important;
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: auto !important;
                transform: none !important;
                box-shadow: none !important;
                border-radius: 0 !important;
                width: 100% !important;
                flex-direction: row !important;
                justify-content: center !important;
                align-items: center !important;
                gap: 2rem !important;
                padding: 0 !important;
                background: transparent !important;
            }

            nav a {
                width: auto;
                border-bottom: none;
                padding: 12px 16px;
                border-radius: 6px;
            }
        }

        @media (min-width: 993px) {
            .nav-header,
            .close-btn,
            .hamburger {
                display: none !important;
            }
        }

        section {
            padding: 80px 20px;
            max-width: 1400px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .page-section {
            padding: 80px clamp(20px, 5vw, 90px);
            max-width: 1400px;
            margin: 0 auto;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 40px;
            color: var(--dark-gray);
            text-align: center;
            position: relative;
        }

        .page-section > h2,
        .page-section .detailed-text {
            width: min(1100px, calc(100% - clamp(32px, 8vw, 120px)));
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
            padding-left: clamp(8px, 2vw, 36px);
            padding-right: clamp(8px, 2vw, 36px);
        }

        .story-layout {
            width: min(1180px, calc(100% - clamp(28px, 6vw, 90px)));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.65fr 0.95fr;
            gap: clamp(20px, 3vw, 40px);
            align-items: center;
        }

        .story-layout-reverse {
            grid-template-columns: 0.95fr 1.65fr;
        }

        .story-layout-reverse .story-copy {
            order: 2;
        }

        .story-layout-reverse .story-visual {
            order: 1;
        }

        .story-copy {
            max-width: 100%;
        }

        .story-copy h2 {
            margin-top: 0;
        }

        .story-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .story-visual img {
            width: 100%;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
            display: block;
            cursor: zoom-in;
            transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease, border 0.35s ease;
            border: 2px solid transparent;
        }

        .story-visual img:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 24px 42px rgba(45, 38, 23, 0.18);
            border-color: rgba(218, 165, 32, 0.7);
            filter: saturate(1.08);
        }

        .story-gallery {
            width: min(1100px, calc(100% - clamp(28px, 6vw, 90px)));
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: clamp(14px, 2vw, 26px);
        }

        .story-gallery img {
            width: 100%;
            height: 320px; /* slightly larger gallery images */
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
            display: block;
        }

        @media (max-width: 768px) {
            .story-layout,
            .story-layout-reverse {
                grid-template-columns: 1fr;
                width: min(100%, calc(100% - 24px));
                gap: 24px;
            }

            .story-layout-reverse .story-copy,
            .story-layout-reverse .story-visual,
            .story-copy,
            .story-visual {
                order: initial;
            }

            .story-visual img {
                max-width: 480px;
                width: min(100%, 480px);
                height: auto;
                aspect-ratio: 4 / 5;
            }

            .story-gallery {
                grid-template-columns: 1fr;
            }
        }

        h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 2px;
            background: var(--primary-gold);
            margin: 10px auto 0;
            animation: gold-glow 2s infinite alternate;
        }

        h3 {
            font-size: 1.8rem;
            color: var(--dark-gray);
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .intro-text,
        .detailed-text {
            max-width: 1100px;
            width: min(1100px, calc(100% - clamp(32px, 8vw, 120px)));
            margin: 0 auto 40px;
            padding: 0 clamp(8px, 2vw, 36px);
            text-align: justify;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
            justify-items: center;
        }

        .gallery figure {
            margin: 0;
            overflow: visible;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
            background-color: var(--light-gray);
            cursor: pointer;
            border: 2px solid transparent;
        }

        .gallery figure:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-gold);
        }

        .gallery img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px 12px 0 0;
            transition: filter 0.4s ease;
            object-fit: contain;
            background: #f5f0e4;
        }

        .gallery figure:hover img {
            filter: brightness(1.1);
        }

        .gallery figcaption {
            text-align: center;
            padding: 15px;
            font-weight: 600;
            color: var(--dark-gray);
        }

        .footer-brand {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 14px;
        }

        .tica-footer-logo {
            display: block;
            background: white;
            justify-content: left 100%;
            position: left 100%;
            width: 180px;
            height: auto;
            opacity: 0.98;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .tica-footer-logo:hover {
            transform: translateY(-2px);
            opacity: 1;
        }

        .royal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 36px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            align-items: start;
        }
        .royal-grid-portrait {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 36px;
            /* max-width: 1400px; */
            margin: 0 auto;
            padding: 0 20px;
            align-items: start;
        }

        .royal-card {
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245, 236, 211, 0.92));
            border-radius: 24px;
            overflow: visible;
            box-shadow: 0 10px 30px rgba(45, 38, 23, 0.08), inset 0 0 0 1px rgba(218, 165, 32, 0.18);
            border: 1px solid rgba(218, 165, 32, 0.2);
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .royal-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 20px 40px rgba(45, 38, 23, 0.14);
        }

        .royal-card figure {
            margin: 0;
            width: 100%;
            background: linear-gradient(135deg, #f5f0e6 0%, #e8e0d0 100%);
            position: relative;
            display: block;
            overflow: visible;
            border-radius: 24px 24px 0 0;
        }

        .royal-card figure::after {
            content: '';
            position: absolute;
            inset: auto 0 0 0;
            height: 80px;
            background: linear-gradient(to top, rgba(0,0,0,0.18), transparent);
            pointer-events: none;
            z-index: 1;
        }

        .royal-card img {
            width: 100%;
            height: auto;
            /* max-height: 72vh; */
            object-fit: contain;
            object-position: center center;
            display: block;
            background: #f9f3ea;
            border-radius: 24px 24px 0 0;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
        }

        .royal-card:hover img {
            transform: scale(1.02);
            filter: brightness(1.00) saturate(1.20);
        }

        .royal-card-content {
            padding: 28px 28px 32px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .royal-card h3 {
            margin: 0 0 12px;
            font-family: 'Playfair Display', serif;
            font-size: 1.9rem;
            color: var(--dark-gray);
            text-align: left;
            line-height: 1.2;
        }

        .royal-card .born {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 16px;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(218, 165, 32, 0.12);
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            width: fit-content;
        }

        .royal-card p {
            margin: 0;
            line-height: 1.75;
            color: #444;
            font-size: 1.05rem;
            flex: 1;
        }

        .testimonial {
            background-color: var(--light-gray);
            border-left: 5px solid var(--primary-gold);
            padding: 20px;
            margin: 20px auto;
            max-width: 800px;
            font-style: italic;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .testimonial cite {
            display: block;
            text-align: right;
            font-style: normal;
            margin-top: 10px;
        }

        .faq-item {
            margin-bottom: 30px;
            transition: opacity 0.5s ease;
        }

        .faq-item:hover {
            opacity: 0.8;
        }

        .faq-item h3 {
            font-size: 1.5rem;
            color: var(--dark-gray);
            margin-bottom: 10px;
        }

        form {
            max-width: 1200px;
            margin: 0 auto;
        }

        input,
        textarea {
            width: 100%;
            padding: 15px;
            margin: 15px 0;
            border: 1px solid #cccccc;
            border-radius: 8px;
            font-size: 1.1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        input:focus,
        textarea:focus {
            border-color: var(--primary-gold);
            outline: none;
            box-shadow: 0 0 8px rgba(218, 165, 32, 0.3);
        }

        button {
            background-color: var(--primary-gold);
            color: var(--white);
            padding: 15px 30px;
            width: 100%;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        button:hover {
            background-color: var(--dark-gold);
            transform: scale(1.05);
        }

        /* Custom radio styles */
        .radio-group {
            display: flex;
            gap: 16px;
            margin-top: 8px;
            margin-bottom: 16px;
        }

        .radio-group input[type="radio"] {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .radio-group label {
            display: inline-block;
            padding: 10px 20px;
            width: 100%;
            text-align: center;
            background-color: var(--light-gray);
            border: 2px solid var(--primary-gold);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            color: var(--dark-gray);
        }

        .radio-group input[type="radio"]:checked + label {
            background-color: var(--primary-gold);
            color: var(--white);
            border-color: var(--dark-gold);
            box-shadow: 0 2px 8px rgba(218, 165, 32, 0.3);
        }

        .radio-group label:hover {
            background-color: var(--light-gold);
            transform: translateY(-2px);
        }

        .radio-group input[type="radio"]:focus + label {
            outline: 2px solid var(--dark-gold);
            outline-offset: 2px;
        }

        #lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            transition: opacity 0.3s ease;
        }

        #lightbox.active {
            display: flex;
            opacity: 1;
        }

        #lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
            animation: zoom-in 0.5s ease;
        }

        #back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            background-color: var(--primary-gold);
            color: var(--white);
            padding: 10px 15px;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            z-index: 1000;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        #back-to-top:hover {
            background-color: var(--dark-gold);
            /* transform: rotate(180deg); */
        }

        footer {
            background-color: var(--dark-gray);
            color: var(--white);
            text-align: center;
            padding: 25px;
            margin-top: 50px;
        }

        footer p {
            margin: 0;
        }

        /* Carousel Styles */
        .carousel {
            position: relative;
            max-width: 800px;
            margin: 0 auto 40px;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }
        .health-Test-Results-h4{
            font-size: 1.5rem;
        }
        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-item {
            min-width: 100%;
            box-sizing: border-box;
        }

        .carousel-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        .carousel-caption {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: var(--white);
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px;
            border-radius: 4px;
        }

        .carousel-prev,
        .carousel-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: var(--white);
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 1.5rem;
            transition: background-color 0.3s ease;
        }

        .carousel-prev:hover,
        .carousel-next:hover {
            background-color: var(--primary-gold);
        }

        .carousel-prev {
            left: 10px;
        }

        .carousel-next {
            right: 10px;
        }

        .litter-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .litter-item {
            margin-bottom: 30px;
            border-bottom: 1px solid #ccc;
            padding-bottom: 20px;
        }

        .litter-item:last-child {
            border-bottom: none;
        }

        .litter-details {
            margin-top: 60px;
        }

        .kitten {
            margin-bottom: 40px;
        }

        .kitten img {
            width: 300px;
            height: auto;
            border-radius: 12px;
            margin-bottom: 10px;
        }

        /* Sleek enhancements */
        body {
            font-size: 1rem; /* Use rem */
            overflow-x: hidden;
        }

        section {
            padding: 60px 20px; /* Reduced padding for sleeker feel */
        }

        h2 {
            font-size: 2.8rem; /* Slightly smaller for balance */
            letter-spacing: 0.5px;
        }

        button, .card-actions button, .card-actions a {
            border-radius: 4px; /* Sleeker buttons */
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .gallery figure, .kitten-card {
            border-radius: 16px; /* Softer corners */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Softer shadows */
        }

        .gallery figure:hover, .kitten-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .testimonial {
            border-radius: 8px;
            border-left: 5px solid var(--primary-gold);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        /* Kitten section styles updated for gold scheme */
        .badge.available {
            background: var(--primary-gold);
            color: var(--dark-gray);
        }

        .badge.inhome {
            background: var(--dark-gray);
            color: var(--white);
        }

        .card-actions button,
        .card-actions a {
            background: var(--primary-gold);
            color: var(--dark-gray);
        }

        .card-actions button:hover,
        .card-actions a:hover {
            background: var(--dark-gold);
            color: var(--white);
        }

        .card-actions a[style*="background:var(--light-gold);"] {
            background: var(--light-gold) !important;
            color: var(--dark-gray);
        }

        /* Gold-themed animations */
        @keyframes gold-shimmer {
            0% { color: var(--white); text-shadow: 0 0 5px var(--light-gold); }
            100% { color: var(--light-gold); text-shadow: 0 0 15px var(--primary-gold); }
        }

        @keyframes gold-glow {
            0% { background: var(--primary-gold); box-shadow: 0 0 5px var(--light-gold); }
            100% { background: var(--light-gold); box-shadow: 0 0 15px var(--primary-gold); }
        }

        @keyframes zoom-in {
            0% { transform: scale(0.8); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Kitten card hover animation */
        .kitten-card:hover {
            animation: gold-pulse 1s infinite alternate;
        }

        @keyframes gold-pulse {
            0% { box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2); }
            100% { box-shadow: 0 4px 15px rgba(218, 165, 32, 0.5); }
        }

        .kitten-minimal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            max-width: 900px;
            margin: 0 auto 40px;
        }

        .kitten-minimal-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.10);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 24px 18px 20px 18px;
            transition: box-shadow 0.3s;
        }

        .kitten-minimal-card img {
            width: 100%;
            max-width: 180px;
            height: auto;
            max-height: 180px;
            object-fit: contain;
            border-radius: 12px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(218,165,32,0.10);
            background: #f7f5f1;
        }

        .kitten-minimal-card h4 {
            margin: 0 0 10px 0;
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--primary-gold);
            text-align: center;
            letter-spacing: 0.5px;
        }

        .kitten-minimal-card .badge {
            font-size: 1rem;
            padding: 6px 16px;
            border-radius: 999px;
            margin-bottom: 12px;
            font-weight: 700;
            background: var(--primary-gold);
            color: var(--dark-gray);
            display: inline-block;
            letter-spacing: 0.5px;
            box-shadow: 0 1px 4px rgba(218,165,32,0.10);
        }

        .kitten-minimal-card .badge.inhome {
            background: var(--dark-gray);
            color: var(--white);
        }

        .kitten-minimal-card .kitten-details {
            color: #555;
            font-size: 1.05rem;
            margin-bottom: 10px;
            text-align: center;
            line-height: 1.5;
        }

        .kitten-minimal-card .adopt-btn {
            background: var(--primary-gold);
            color: var(--dark-gray);
            border: none;
            border-radius: 8px;
            padding: 10px 22px;
            font-size: 1.08rem;
            font-weight: 700;
            text-decoration: none;
            margin-top: 12px;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
            display: block;
            text-align: center;
            box-shadow: 0 2px 8px rgba(218,165,32,0.10);
        }

        .kitten-minimal-card .adopt-btn:hover {
            background: var(--dark-gold);
            color: var(--white);
        }

        .kitten-alt-list {
            max-width: 1200px;
            margin: 0 auto 40px;
            display: flex;
            flex-direction: column;
            gap: 36px;
        }

        .kitten-alt-row {
            display: flex;
            align-items: center;
            gap: 32px;
            background: #e8e8e8;
            border-radius: 14px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
            padding: 18px 24px;
                    flex-wrap: nowrap;
        }

        .kitten-alt-row.reverse {
            flex-direction: row-reverse;
        }

        .kitten-alt-photo {
                    flex: 1 1 58%;
                    max-width: 58%;
                    margin: 0;
                    overflow: visible;
                    border-radius: 12px;
                    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
                    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
                    background-color: var(--light-gray);
                    cursor: pointer;
                    border: 2px solid transparent;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .kitten-alt-info {
                    flex: 1 1 42%;
                    min-width: 0;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    padding: 20px 12px;
                    color: var(--dark-gray);
                }

                .kitten-alt-info h3 {
                    margin: 0 0 12px;
                    font-size: clamp(1.8rem, 2.1vw, 3rem);
                    font-weight: 500;
                    line-height: 1.2;
                    color: var(--dark-gray);
                }

                .kitten-alt-info p {
                    margin: 0 0 10px;
                    font-size: clamp(1.05rem, 1.2vw, 1.5rem);
                    line-height: 1.5;
                    color: var(--dark-gray);
                }

                .kitten-alt-info strong {
                    font-weight: 700;
                }

                .kitten-alt-photo img {
                    width: 100%;
                    max-width: 100%;
                    max-height: none;
                    height: auto;
                    display: block;
                    border-radius: 12px;
                    transition: filter 0.4s;
                    object-fit: contain;
                    background: #f4efe7;
                }

        .kitten-alt-photo:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-gold);
        }

        /* Improved Media Queries for Multiple Breakpoints */
        
        @media (min-width: 993px) {
            .royal-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .royal-grid-portrait {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) and (min-width: 769px) {
            .royal-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
           .royal-grid-portrait {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .royal-grid {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 0 12px;
            }
            .royal-grid-portrait {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 0 12px;
            }
            .royal-card-content {
                padding: 22px 22px 26px;
            }
            .royal-card h3 {
                font-size: 1.7rem;
            }
        }

        @media (max-width: 576px) {
            .royal-grid {
                gap: 20px;
            }
            .royal-grid-portrait {
                gap: 20px;
            }
        }

        @media (max-width: 1250px) {
            /* header {
                padding: 120px 10px;
            } */

            header h1 {
                font-size: 3rem;
            }

            header p {
                font-size: 1.2rem;
            }
            section {
                padding: 60px 15px;
            }

            .intro-text,
            .detailed-text {
                max-width: 800px;
            }

            .kitten-alt-photo {
                max-width: 45%;
            }
            form {
                max-width: 90%;
            }
        }

        @media (max-width: 992px) {
            /* .royal-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 16px;
            }
            .royal-grid-portrait {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 16px;
            } */
            .royal-card,
            .royal-card:nth-child(odd),
            .royal-card:nth-child(even) {
                transform: none;
            }

            /* header {
                padding: 120px 10px;
            } */

            header h1 {
                font-size: 3rem;
            }

            header p {
                font-size: 1.2rem;
            }

            nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            nav a {
                padding: 12px 16px;
                font-size: 0.9rem;
                margin: 5px;
            }

            h2 {
                font-size: 2.5rem;
            }

            .gallery {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .kitten-alt-row,
            .kitten-alt-row.reverse {
                flex-direction: column;
                gap: 20px;
                flex-wrap: wrap;
            }

            .kitten-alt-photo {
                max-width: 100%;
                flex-basis: 100%;
            }

            .kitten-alt-info {
                padding: 0 8px 8px;
            }

            .kitten-alt-photo img {
                max-height: none;
            }
            .radio-group {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 120px 10px;
            }

            header h1 {
                font-size: 3rem;
            }

            header p {
                font-size: 1.2rem;
            }

            nav a {
                padding: 10px 14px;
                font-size: 0.85rem;
            }

            section {
                padding: 50px 10px;
            }

            h2 {
                font-size: 2.2rem;
            }

            h3 {
                font-size: 1.6rem;
            }

            .gallery {
                grid-template-columns: 1fr;
            }

            .testimonial {
                padding: 15px;
                max-width: 100%;
            }

            form {
                max-width: 90%;
            }

            input,
            textarea {
                font-size: 1rem;
            }

            button {
                font-size: 1rem;
                padding: 12px 25px;
            }

            .kitten img {
                width: 100%;
                max-width: 250px;
            }
        }

        @media (max-width: 576px) {
            body {
                font-size: 0.9rem;
            }

            header {
                padding: 100px 10px;
            }

            header h1 {
                font-size: 2.5rem;
            }

            header p {
                font-size: 1rem;
            }

            nav {
                flex-direction: column;
                padding: 10px 0;
            }

            nav a {
                width: 100%;
                margin: 0;
                padding: 12px;
                text-align: center;
                border-radius: 0;
            }

            nav a::after {
                bottom: 0;
                left: 0;
                width: 100%;
                height: 2px;
            }

            nav a:hover::after {
                width: 100%;
                left: 0;
            }

            h2 {
                font-size: 2rem;
            }

            h3 {
                font-size: 1.4rem;
            }

            .faq-item h3 {
                font-size: 1.3rem;
            }

            .kitten-alt-photo img {
                max-height: 300px;
            }

            #back-to-top {
                bottom: 20px;
                right: 20px;
                padding: 8px 12px;
            }
        }

        @media (max-width: 400px) {
            .gallery figure {
                min-width: 100%;
            }

            .kitten-minimal-grid {
                grid-template-columns: 1fr;
            }
        }
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Open Sans', sans-serif;
    background: #f8f6f3;
    color: #3d3d3d;
    line-height: 1.7;
  }

  .gl-health-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
  }

  .gl-health-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .gl-health-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #2c2c2c;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }

  .gl-health-header p {
    font-size: 1.05rem;
    color: #6b6b6b;
    max-width: 600px;
    margin: 0 auto;
  }

  .gl-health-badge-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }

  .gl-health-badge {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    min-width: 220px;
    flex: 1;
    max-width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gl-health-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }

  .gl-health-badge .icon {
    width: 56px;
    height: 56px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
  }

  .gl-health-badge h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 8px;
  }

  .gl-health-badge p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
  }

  .gl-health-details {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 40px;
  }

  .gl-health-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .gl-health-details p {
    margin-bottom: 16px;
    color: #555;
  }

  .gl-health-details strong {
    color: #2c2c2c;
  }

  .gl-cat-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  }

  .gl-cat-table thead {
    background: #2c2c2c;
    color: #fff;
  }

  .gl-cat-table th {
    padding: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
    letter-spacing: 0.3px;
  }

  .gl-cat-table td {
    padding: 16px;
    border-bottom: 1px solid #eee;
    background: #fff;
    font-size: 0.95rem;
  }

  .gl-cat-table tr:last-child td {
    border-bottom: none;
  }

  .gl-cat-table tr:hover td {
    background: #fafafa;
  }

  .gl-status-pass {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .gl-status-pass::before {
    content: "✓";
    font-weight: bold;
  }

  .gl-note-box {
    background: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin-top: 32px;
  }

  .gl-note-box p {
    margin: 0;
    color: #5d4037;
    font-size: 0.95rem;
  }

  .gl-note-box strong {
    color: #3e2723;
  }

  @media (max-width: 640px) {
    .gl-health-header h2 { font-size: 1.8rem; }
    .gl-health-details { padding: 24px; }
    .gl-cat-table th, .gl-cat-table td { padding: 12px; font-size: 0.85rem; }
  }