    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* border: 1px solid red; */
        }

        body {
            font-family: 'Rubik', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: white;
            overflow-x: hidden;
        }

        .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
        }   

        .reveal.active {
        opacity: 1;
        transform: translateY(0);
        }

        /* Header Navigation */
        .navbar {
            top: 0;
            position: sticky;
            width: 100%;
            z-index: 100;
            background: #fffd9e;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: backdrop-filter 0.3s ease, background 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            border-radius: 0px 0px 40px 40px;
        }

        .navbar.scrolled{
            backdrop-filter: blur(10px);
            background: #fffb2093;
            }

        .navbarLogo {
            font-size: 1rem;
            font-weight: bold;
            color: #333;
        }

        .navbarLogo img {
            height: auto;
            max-width: 12rem;
        }

        .nav {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .navLink {
            text-decoration: none;
            color: #901C41;
            font-weight: 800;
            transition: color 0.3s;
        }

        .navLink:hover {
            color: #ff4040;
        }

        /* --- Tombol hamburger --- */
        .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 6px;
        }

        .hamburger span {
        width: 28px;
        height: 3px;
        background-color: #901c41;
        border-radius: 5px;
        transition: all 0.3s ease;
        }

        /* --- Mode responsif (mobile) --- */
        @media (max-width: 768px) {
        .nav {
            position: absolute;
            top: 70px;
            right: 0;
            background-color: #901c41;
            width: 100%;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem 0;
            display: none;
            transition: all 0.3s ease;
        }

        .nav.active {
            display: flex;
        }

        .hamburger {
            display: flex;
        }

        /* Efek animasi hamburger menjadi "X" */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translateY(8px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(-8px);
        }
        }

        /* Hero Section */
        .hero {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 4rem 2rem;
            position: relative;
            overflow: visible;
        }

        .heroContent {
            flex: 1;
            max-width: 700px;
            margin: 0rem 3rem ;
        }

        /* Dekorasi SVG */
            .heroDecor {
            position: absolute;
            height: auto;
            opacity: 1;
            transition: transform 3s ease-in-out, opacity 1s ease;
            z-index: -2;
            }

            .heroDecorLeft {
            width: 500px;
            top: 0;
            left: -10rem;
            transform: translate(-30%, 30%) rotate(-15deg);
            rotate: 120deg;
            }

            .heroDecorRight {
            width: 320px;            
            bottom: -4rem;
            right: -8rem;
            transform: translate(30%, -30%) rotate(15deg);
            rotate: -120deg;
            }

            /* Efek animasi lembut biar lebih hidup */
            .heroDecor:hover {
            opacity: 0.4;
            transform: scale(1.05);
            }

            .paw1 {
            position: absolute;
            width: 50px;
            top: 15rem;
            rotate: 90deg;
            }
            .paw2 {
            position: absolute;
            width: 20px;
            }

            /* Bisa juga tambahkan sedikit efek floating */
            @keyframes float {
            0%, 100% {
            transform: translateY(0) rotate(5deg);
            }
            50% {
            transform: translateY(-10px) rotate(5deg);
            }
            }

            .heroDecorRight {
            animation: float 6s ease-in-out infinite;
            }
            .heroDecorLeft {
            animation: float 8s ease-in-out infinite reverse;
            }
            
            .heroTitle {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.1rem;
            color: #901C41;
            display: inline-block;
            }

            .heroTitle span {
            display: inline-block;
            transition: color 0.3s ease, transform 0.2s ease;
            cursor: pointer;
            }

            .heroTitle span:hover {
            transform: scale(1.3) rotate(5deg);
            }

        .heroSubTitle {
            font-size: 1.3rem;
            font-weight: 400;
            margin-bottom: 1rem;
            color: #3f3f3f;
        }

        .heroButton {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.8rem 5rem;
            background-color: #901C41;
            color: white;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: bold;
            border-radius: 50px;
            transition: background-color 0.3s;
        }

        .heroButton:hover {
            background-color: #ff3877;
        }

        .heroImage {
            flex: 1;
            text-align: center;
        }

        .heroImage img {
            max-width: 450px;
            width: 100%;
            height: auto;
            
        }
        

        /* Category Section */
        .category {
            padding: 3rem 2rem;
            z-index: -3;
        }

        .categoryGrid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
        text-align: center;
        margin-top: 3rem;
        }

        .categoryItem {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
        font-weight: 500;
        font-size: 1.2rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .material-symbols-outlined {
        font-size: 30px;
        color: #ff1313;
        margin: 0.5rem 1rem ;
        }

        .pets {
        background-color: #f5f9ff;
        padding: 4rem 2rem;
        text-align: center;
        }

        .petsTitle {
        font-size: 2rem;
        font-weight: 700;
        color: #333;
        }

        .petsSubTitle {
        color: #555;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        }

        .petsGrid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 1.5rem;
        max-width: 1200px;
        margin: 0 auto;
        }

        .petCard {
        height: 220px;
        position: relative;
        background-color: var(--card-color);
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease;
        text-align: center;
        padding-bottom: 1rem;
        }

        .petCard::before {
        content: attr(data-number);
        position: absolute;
        top: 2rem;
        left: -2rem;
        font-size: 9rem;
        color: rgba(0, 0, 0, 0.05);
        font-weight: 200;
        pointer-events: none;
        z-index: 0;
        }

        .petCard:hover {
        transform: translateY(-8px);
        }

        .petCardImage {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 140px;
        margin-top: 1rem;
        }

        .petCardImage img {
        max-height: 250px;
        width: auto;
        object-fit: contain;
        margin-top: 8rem;
        margin-left: 8rem;
        }

        .petCardContent {
        position: absolute;
        top: 1rem;
        left: 1rem;
        text-align: left;
        z-index: 2;
        }

        .petCardName {
        font-weight: 700;
        font-size: 1.1rem;
        color: #333;
        margin: 0;
        }

        .petCardType {
        color: #666;
        font-size: 0.9rem;
        }


        /* Service Section */
        .service-adoptPaw {
            position: relative;
            background-color: #fffb20a2; 
            background: linear-gradient(135deg, #fffb20d0, #ffd900d7); 
            padding: 4rem 2rem 0rem 2rem;
            overflow: hidden; /* agar pattern tidak keluar area */
        }

        .service-adoptPaw::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url("./images/pattern1.jpg");
            background-size: contain; /* atau cover tergantung pattern */
            background-repeat: repeat;
            opacity: 0.025; /* ubah sesuai keinginanmu */
            z-index: 0;
        }

        .service-openPaw {
            position: relative;
            background: linear-gradient(135deg, #901c41, #ffb6c1); 
            padding: 1rem 2rem;
            overflow: hidden; /* agar pattern tidak keluar area */
        }

        .serviceContainer {
            display: flex;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto 4rem;
            position: relative;
            z-index: 1; /* supaya konten tampil di atas pattern */
        }

        .serviceContainerReverse {
            flex-direction: row-reverse;
            margin-bottom: 0;
        }

        .serviceImage.openPaw {
            flex: 1;
            min-height: 250px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .serviceImage.adoptPaw {
            display: inline-block;
            height: auto;
            border-radius: 40px;
            background: linear-gradient(135deg, #901c41, #ff7f92); 
        }

        .serviceImage.adoptPaw img {
            max-width: 100%;
            height: auto;
            border-radius: 40px;
        }

        .serviceImage.openPaw img {
            max-width: 80%;
            height: auto;
            border-radius: 40px;
        }

        .serviceContent {
            flex: 1;
        }

        .serviceTitle {
            font-size: 2.2rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .serviceTitle.reverse {
            font-size: 2.2rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            color: #ffff;
        }

        .serviceLinks {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .serviceLink {
            font-weight: 600;
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
            border: 2px solid #333;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
        }

        .serviceLink.reverse {
            font-weight: 600;
            text-decoration: none;
            color: #ffffff;
            transition: color 0.3s;
            border: 2px solid #ffffff;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
        }

        .serviceLink:hover {
            border-color: #ff1313;
            color: #ff1313;
        }

        .serviceLink.reverse:hover {
            border-color: #fffb20a2;
            color: #fffb20a2;
        }

        /* Care Section */
        .care {
            padding: 8rem 2rem;
            text-align: center;
            background-color: #FBF4F4;
        }

        .careTitle {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 3rem;
            color: #901C41;
        }

        .careGrid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .careCard {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .careCardImage {
            width: 100%;
            height: 180px;
            background-color: #e8e8e8;
            overflow: hidden; 
            position: relative;
        }

        .careCardImage img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Gambar fill area tanpa distorsi */
            object-position: center; /* Posisi center */
            display: block; /* Hilangkan space bawah */
        }

        .careCardText {
            padding: 1rem;
            font-size: 1rem;
            font-weight: 500;
            color: #555;
            text-align: center;
            line-height: 1.4;
            min-height: 60px; /* Minimum height agar text seragam */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Footer */
        .footer {
            position: relative;
            background-image: url("./images/Footer.png");
            background-size: cover; /* Cover seluruh area */
            background-position: center; /* Posisi center */
            background-repeat: no-repeat;
            padding: 5rem 2rem 3rem 2rem; /* Extra padding top untuk space */
            min-height: 400px; /* Minimum height agar background terlihat sempurna */
        }

        .footerContainer {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 5rem auto;
            bottom: -2rem;
            gap: 3rem;
            position: relative;
            z-index: 1; /* Di atas overlay */
            padding-top: 2rem; /* Spacing dari atas */
            font-weight: 500;
        }

        .footerBrand {
            flex: 1;
        }

        .footerLogo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .footerLogoIcon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
        }

        .footerTagline {
            font-size: 0.95rem;
            margin-bottom: 1rem;
            font-weight: 500;
            color: #333;
        }

        .footerSocial {
            display: flex;
            gap: 0.8rem;
        }

        .fab{
            color: #333;
            line-height: 40px;
            text-align: center;
            font-size: 20px;
        }

        .footerSocialIcon {
            width: 40px;
            height: 40px;
            background-color: #666;
            border-radius: 4px;
            transition: transform 0.3s, background-color 0.3s;
            cursor: pointer;
        }

        .footerSocialIcon:hover {
            transform: translateY(-3px);
            background-color: #ff6b6b;
        }

        .footerLinks {
            flex: 1;
        }

        .footerSectionTitle {
            font-weight: bold;
            color: #222;
        }

        .footerList {
            list-style: none;
        }

        .footerListItem {
            margin-bottom: 0.5rem;
            list-style: none;
        }

        .footerListLink {
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }

        .footerListLink:hover {
            color: #ff6b6b;
        }

        .footerContact {
            flex: 1;
        }

        .footerBottom {
            text-align: center;
            margin-top: 5rem;
            padding: 2rem 0;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
            color: #333;
            text-shadow: 0 1px 2px rgba(255,255,255,0.8);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer {
                padding: 4rem 1.5rem 2rem 1.5rem;
                min-height: 300px;
            }
            
            .footerContainer {
                flex-direction: column;
                gap: 2rem;
            }
            
            .footer::before {
                background: rgba(255, 255, 255, 0.85); /* Lebih opaque di mobile */
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .categoryGrid,
            .careGrid {
                grid-template-columns: repeat(3, 1fr);
            }

            .petsGrid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }

            .heroTitle {
                font-size: 2rem;
            }

            .categoryGrid {
                grid-template-columns: repeat(2, 1fr);
            }

            .petsGrid {
                grid-template-columns: repeat(2, 1fr);
            }

            .serviceContainer,
            .serviceContainerReverse {
                flex-direction: column;
            }

            .careGrid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footerContainer {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .nav {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .categoryGrid,
            .petsGrid,
            .careGrid {
                grid-template-columns: 1fr;
            }
        }

        .aboutHero {
            /* background: linear-gradient(135deg, #FBF4F4 0%, #fff 100%); */
            padding: 4rem 2rem;
            background-color: #FBF4F4 ;
            text-align: center;
            margin-top: -3rem;
        }

        .aboutHeroTitle {
            font-size: 3rem;
            font-weight: bold;
            color: #901C41;
            margin-bottom: 2rem;
        }

        .aboutHeroDescription {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            text-align: left;
        }

        .aboutHeroDescription p {
            margin-bottom: 1rem;
        }

        .aboutServiceList {
            list-style: none;
            margin: 1.5rem 0;
        }

        .aboutServiceList li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .aboutServiceList li::before {
            content: "•";
            color: #901C41;
            font-weight: bold;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }

        .aboutServiceList strong {
            color: #901C41;
        }

        /* Our Story Section */
        .aboutStory {
            background-color: #E8E8E8;
            padding: 5rem 2rem;
            text-align: center;
        }

        .aboutStoryTitle {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .aboutTimeline {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            position: relative;
        }

        /* Dotted Line */
        .aboutTimeline::before {
            content: "";
            position: absolute;
            top: 100px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: repeating-linear-gradient(
                to right,
                #666 0,
                #666 10px,
                transparent 10px,
                transparent 20px
            );
            z-index: 0;
        }

        .timelineItem {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .timelineCircle {
            width: 180px;
            height: 180px;
            background-color: white;
            border-radius: 50%;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
        }

        .timelineCircle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .timelineCircle.placeholder {
            background: linear-gradient(135deg, #fffb20a2, #ffd700);
            font-size: 0.9rem;
            color: #333;
            padding: 1rem;
            text-align: center;
            font-weight: 600;
        }

        .timelineContent {
            background-color: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            min-height: 180px;
        }

        .timelineTitle {
            font-size: 1.1rem;
            font-weight: bold;
            color: #901C41;
            margin-bottom: 1rem;
        }

        .timelineText {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
        }

        /* Behind PawHome Section */
        .aboutTeam {
            background-color: #fff;
            padding: 5rem 2rem;
            text-align: center;
        }

        .aboutTeamTitle {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .teamGrid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .teamCard {
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .teamCard:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(144, 28, 65, 0.2);
        }

        .teamImageWrapper {
            width: 100%;
            height: 200px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .teamImageWrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .teamImageWrapper.placeholder {
            background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
            color: #999;
            font-weight: 600;
        }

        .teamInfo {
            text-align: left;
        }

        .teamInfoTitle {
            font-weight: bold;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .teamInfoItem {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 0.3rem;
        }

        /* Maps Section */
        .aboutMaps {
            background-color: #F5F5F5;
            padding: 5rem 2rem;
        }

        .aboutMapsContainer {
            max-width: 900px;
            margin: 0 auto;
        }

        .aboutMapsTitle {
            font-size: 2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 2rem;
            text-align: center;
        }

        .mapsWrapper {
            width: 100%;
            height: 450px;
            background-color: #D8D8D8;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-weight: 600;
        }

        .mapsWrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .aboutTimeline {
                flex-direction: column;
                align-items: center;
            }

            .aboutTimeline::before {
                display: none;
            }

            .timelineItem {
                max-width: 500px;
            }

            .teamGrid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .aboutHeroTitle {
                font-size: 2rem;
            }

            .aboutStoryTitle,
            .aboutTeamTitle {
                font-size: 1.8rem;
            }

            .teamGrid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .mapsWrapper {
                height: 300px;
            }
        }        

        /* HALAMAN ADOPTPAW */
        .adoptPaw-section {
        text-align: center;
        padding: 3rem 0;
        background-color: #FBF4F4;
        }

        .adoptPaw-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #901c41;
        }

        /* Grid container yang tetap rapi dan sejajar */
        .pet-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Lebarkan card */
        gap: 1.5rem;
        justify-content: center;
        align-items: start;
        max-width: 1100px;
        margin: 0 auto;
        }

        /* Set ukuran card agar tetap seragam */
        .pet-card {
        background-color: var(--card-color);
        border-radius: 20px;
        padding: 1.5rem;
        transition: all 0.3s ease;
        position: relative;
        width: 100%;
        min-height: 380px; /* agar semua card tinggi sama */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        }

        .pet-card:hover {
        transform: translateY(-5px);
        }

        .pet-card img {
        width: 100%;
        height: 220px; /* tinggi gambar tetap */
        border-radius: 15px;
        object-fit: contain; 
        }

        .pet-info {
        margin-top: 0.8rem;
        }

        .pet-name {
        font-size: 1.3rem;
        font-weight: bold;
        color: #333;
        }

        .pet-type {
        color: #555;
        font-size: 1rem;
        }

        .detailBtn {
            width: 100%;
            margin-top: 1rem;
            border: 2px solid #901c41;
            background: transparent;
            color: #901c41;
            font-size: 1rem;
            padding: 0.7rem 0; /* lebih proporsional */
            border-radius: 15px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .detailBtn:hover {
        background-color: #901c41;
        color: white;
        }

        .adopted {
        background-color: #901c41;
        color: white;
        position: relative;
        }

        .adopted::after {
        content: "❤️";
        margin-left: 8px;
        font-size: 1rem;
        }

        .load-more {
        margin-top: 2rem;
        background: #901c41;
        color: white;
        border: none;
        padding: 0.7rem 2rem;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        }

        .load-more:hover {
        background: #b63359;
        }



        /* HALAMAN CONTACT */
        .heroContact {
        position: relative;
        height: 300px;
        display: flex;
        margin-top: -3rem;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: linear-gradient(180deg, #ffe89c, #f9b4c4, #d9b9ff);
        overflow: hidden;
        }

        .heroContact h1 {
        color: #762a46;
        font-size: 40px;
        z-index: 2;
        position: relative;
        }

        /* Contact Section */
        .contactSection {
        text-align: center;
        padding: 60px 20px;
        margin: 3rem 15rem ;
        border: solid 2px #ddd;
        border-radius: 20px;
        }

        .contactSection h2 {
        font-size: 2rem;
        text-align: center;
        color: #3a2d2d;
        margin-bottom: 10px;
        }

        .contactSection p {
        font-size: 1rem;
        color: #555;
        margin-bottom: 30px;
        }

        /*  Form Container */
        #contactForm {
        width: 100%;
        max-width: 550px; 
        margin: 0 auto; 
        display: flex;
        flex-direction: column;
        gap: 15px;
        }

        #contactForm input,
        #contactForm textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e79ac2;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: "Poppins", sans-serif;
        }

        #contactForm input:focus,
        #contactForm textarea:focus {
        outline: none;
        border-color: #901C41;
        box-shadow: 0 0 5px #f3c1d3;
        }

        #contactForm button {
        background-color: #901C41;
        color: white;
        border: none;
        padding: 12px 0;
        font-size: 1rem;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
        font-weight: 600;
        letter-spacing: 0.5px;
        }

        #contactForm button:hover {
        background-color: #88002b;
        }

        /* Notifikasi di bawah form */
        #notif {
        margin-bottom: 20px;
        text-align: center;
        font-weight: 600;
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(10px);
        }

        .notif.success {
        color: #155724;
        background-color: #d4edda;
        border: 2px solid #c3e6cb;
        padding: 10px;
        border-radius: 10px;
        }

        .notif.error {
        color: #721c24;
        background-color: #f8d7da;
        border: 2px solid #f5c6cb;
        padding: 10px;
        border-radius: 10px;
        }

        /* Responsif */
        @media (max-width: 600px) {
        #contactForm {
            max-width: 90%;
        }

        #contactForm button {
            font-size: 0.95rem;
        }
        }

    /* HALAMAN SERVICE */    
    /* HERO SERVICE (bagian atas halaman) */
    .heroServiceSection {
    position: relative; 
    width: 100%;
    height: 50vh;
    top: -2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 3%;
    background-image: url("./images/carousell.jpeg");
    background-size: cover;
    background-position: 50% 65%;
    background-repeat: no-repeat;
    overflow: hidden;
    }

    .heroServiceOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    }

    .heroServiceContent {
    position: relative;
    z-index: 2;
    }

    .heroServiceTitle {
    color: white;
    font-size: 5rem;
    font-weight: 100;
    /* text-shadow: 2px 2px 15px rgba(0,0,0,0.3); */
    line-height: 1.2;
    max-width: 800px;
    opacity: 0;
    animation: slideInServiceLeft 1s ease forwards 0.3s;
    }

    @keyframes slideInServiceLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
    }

    /* ================================
    CONTAINER & SECTION TITLE
    ================================ */
    .pageContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    }

    .sectionTitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    }

    /* ================================
    GRID LAYOUT SERVICES
    ================================ */
    .servicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    }

    /* ================================
    KARTU SERVICE (AdoptPaw & OpenPaw)
    ================================ */
    .serviceCard {
    background: linear-gradient(135deg, #fff7e6, #ffe9f3);
    border: none;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .serviceCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

    /* Warna beda tiap service */
    .serviceCard[data-service="adopt"] {
    background: linear-gradient(135deg, #ffe0b5, #ffbfcf);
    }

    .serviceCard[data-service="open"] {
    background: linear-gradient(135deg, #c7f5dd, #e6f7ff);
    }

    /* ================================
    ISI KARTU (judul, logo, deskripsi)
    ================================ */
    .cardTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    }

    .adoptLogoCircle {
    width: 110px;
    height: 110px;
    display: block;
    margin: 0 auto 1rem;
    border-radius: 50%;
    object-fit: cover;
    /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); */
    transition: transform 0.3s ease;
    }
    .adoptLogoCircle:hover {
    transform: scale(1.08);
    }

    .cardDescription {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    }

    /* ================================
    TOMBOL AKSI (Start / Find Cat)
    ================================ */
    .actionButton {
    background: #333;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.9rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    }

    .actionButton:hover {
    background: #444;
    transform: translateY(-2px);
    }


/* ================================
HALAMAN OPENPAW
================================ */
.openPawContainer{
background-color: #FBF4F4;
margin-top: -3rem;
padding: 3rem 3rem;
  display: flex;
  justify-content: center;
  align-items: start;
}

.openPawSection {
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  max-width: 900px;
  margin: 2rem auto; /* tetap center secara container */
  border: 2px solid #901C41;
display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.openPawSection h2 {
  font-size: 2rem;
  color: #3a2d2d;
  margin-bottom: 10px;
  text-align: center;
}

.openPawSection p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

/* ===== Form Container ===== */
#openPawForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  color: #3a2d2d;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #901c41;
  border-radius: 8px;
  font-size: 1rem;
}

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

/* tombol */
#openPawForm button {
    width: 600px;
max-width: 600px;
  color: #ffff;
  background-color: #901c41;
  border: 2px;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 600;
}

#openPawForm button:hover {
    color: #ffff;
    background-color: #531126;
}

/* Preview gambar */
#previewContainer {
  text-align: left;
  margin-top: 10px;
}

#previewContainer img {
  max-width: 200px;
  border-radius: 10px;
  border: 2px solid #e79ac2;
  margin-top: 10px;
}

/* Notifikasi */
.openPawContainer #notif {
    width: 600px;
  margin-bottom: 20px;
  font-weight: 600;
  transition: all 0.4s ease;
  opacity: 1;
  transform: translateY(10px);
}

#notif.success {
  color: #155724;
  background-color: #d4edda;
  border: 2px solid #c3e6cb;
  padding: 10px;
  border-radius: 10px;
}

#notif.error {
  color: #721c24;
  background-color: #f8d7da;
  border: 2px solid #f5c6cb;
  padding: 10px;
  border-radius: 10px;
}

/* Responsif */
@media (max-width: 600px) {
  .openPawSection {
    padding: 40px 15px;
  }
}

/* Spinner kecil di dalam tombol */
.spinner {
  border: 3px solid #fff;
  border-top: 3px solid #901C41;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 8px;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

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

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}


/* ================================
HALAMAN DETAILPAW
================================ */
  .detailContainer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: white;
      border-radius: 20px;
      padding: 3rem 10rem;
      /* width: 900px; */
      width: 100%;
      gap: 40px;
      /* border: 1px solid red; */
    }

      .detailPaw {
        flex: 1;
      }

      .detailPaw h2 {
        margin-top: 0;
        color: #a20045;
      }

      .detailPaw p {
        margin: 6px 0;
        font-size: 15px;
        color: #333;
      }

      .catImg {
        flex: 1;
        text-align: center;
      }

      .catImg img {
        width: 100%;
        max-width: 350px;
        border-radius: 20px;
        object-fit: contain;
      }

      .adoptBtn {
        margin-top: 20px;
        background: #a20045;
        color: white;
        border: none;
        padding: 0.7rem 4rem;
        border-radius: 30px;
        font-weight: bold;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
      }

      .adoptBtn:hover {
        background: #820036;
      }