.hero-section {
    min-height: 100vh;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.81) 0%, rgba(0, 0, 0, 0.81) 100%),
        url('image.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.dog-cursor {
    position: fixed;
    top: 0;
    left: 0;
    font-size: 32px;
    pointer-events: none;
    z-index: 999999;
    transform: translate(12px, 12px);
    transition: transform 0.1s ease, rotate 0.2s ease;
}

.dog-cursor:hover {
    rotate: 10deg;
}

/* Subtle overlay animation */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(125, 76, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.badge-hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: white;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-hero-primary {
    background: #c749d7;
    border: none;
    color: white;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.35);
}

.btn-hero-primary:hover {
    background: #6339e6;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.45);
    color: white;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    transition: 0.3s;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.20);
}

.hero-card .form-control,
.hero-card .form-select {
    border-color: #e4e0ed;
    padding: 12px 16px;
    font-size: 15px;
    background: #faf9fc;
}

.hero-card .form-control:focus,
.hero-card .form-select:focus {
    border-color: #c749d7;
    box-shadow: 0 0 0 3px rgba(125, 76, 255, 0.12);
    background: white;
}

.hero-card .input-group-text {
    border-color: #e4e0ed;
    padding: 12px 14px;
    background: #faf9fc;
    color: #c749d7;
}

.btn-hero-form {
    background: #c749d7;
    border: none;
    color: white;
    transition: 0.3s;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(125, 76, 255, 0.25);
}

.btn-hero-form:hover {
    background: #6339e6;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(125, 76, 255, 0.35);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 70px 0 80px;
    }

    .hero-section .display-3 {
        font-size: 2.8rem;
    }

    .hero-card {
        margin-top: 30px;
    }

    .hero-section .lead {
        padding-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-section .display-3 {
        font-size: 2.2rem;
    }

    .hero-card {
        padding: 1.5rem !important;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }
}



/* =========================
   JOURNEY SECTION
========================= */

.journey-section {
    min-height: 100vh;
    background: #f8f5ef;
    overflow: hidden;
    position: relative;
}

.journey-content {
    width: 100%;
    min-height: 850px;
    position: relative;
}


/* TITLE */

.journey-title {
    position: absolute;
    top: 60px;
    right: 8%;
    z-index: 5;
    text-align: right;
}

.journey-title span {
    display: block;
    font-size: 13px;
    letter-spacing: 4px;
    color: #c749d7;
    margin-bottom: 15px;
}

.journey-title h2 {
    font-size: clamp(35px, 4vw, 65px);
    line-height: 1;
    color: #c749d7;
    font-weight: 500;
}


.creative-gallery {
    position: relative;
    padding: 100px 6%;
    background: #c7c2d000;
    overflow: hidden;
}


/* Background glow */

.creative-gallery::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    left: -200px;
    border-radius: 50%;
    background: #7d4cff;
    filter: blur(180px);
    opacity: 0.25;
}

.creative-gallery::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -200px;
    bottom: -250px;
    border-radius: 50%;
    background: #c749d7;
    filter: blur(180px);
    opacity: 0.25;
}


/* HEADER */

.gallery-header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 55px;
}

.gallery-label {
    display: inline-block;
    margin-bottom: 15px;

    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;

    color: #c749d7;
}

.gallery-header h2 {
    color: rgb(0, 0, 0);
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    font-weight: 500;
}

.gallery-header h2 span {
    background: linear-gradient(90deg,
            #7d4cff,
            #c749d7);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-header p {
    max-width: 380px;

    color: #aaa1b5;
    line-height: 1.7;
    font-size: 15px;
}


/* GRID */

.gallery-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-rows: 260px;

    gap: 18px;
}


/* CARD */

.gallery-item {
    position: relative;
    overflow: hidden;

    border-radius: 22px;

    cursor: pointer;

    border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}


/* IMAGE */

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2, .7, .2, 1),
        filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.65);
}


/* GRADIENT OVERLAY */

.gallery-item::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(180deg,
            transparent 30%,
            rgba(12, 5, 20, 0.9));

    opacity: 0.5;

    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}


/* TEXT */

.gallery-overlay {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 22px;

    z-index: 3;

    transform: translateY(15px);

    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    display: block;

    color: #c749d7;

    font-size: 12px;
    letter-spacing: 2px;

    margin-bottom: 5px;
}

.gallery-overlay h3 {
    color: white;

    font-size: 21px;
    font-weight: 500;
}


/* PURPLE BORDER EFFECT */

.gallery-item::before {
    content: "";

    position: absolute;
    inset: 0;

    padding: 2px;

    border-radius: inherit;

    background: linear-gradient(135deg,
            #7d4cff,
            transparent 45%,
            #c749d7);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    opacity: 0;

    transition: opacity 0.4s ease;

    z-index: 4;

    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .gallery-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 550px) {

    .creative-gallery {
        padding: 70px 20px;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
    }

    .gallery-item {
        height: 320px;
    }

    .item-large,
    .item-wide {
        grid-column: auto;
        grid-row: auto;
    }
}

/* MILESTONE */

.milestone {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;

    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.milestone.active {
    opacity: 1;
    transform: translateY(0);
}


/* CIRCLE */

.circle {
    width: 115px;
    height: 115px;
    border: 3px solid #c749d7;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(248, 245, 239, 0.8);
    backdrop-filter: blur(5px);

    transition: 0.4s ease;
}

.circle span {
    font-size: 25px;
    color: #c749d7;
}

.milestone:hover .circle {
    background: #c749d7;
    transform: scale(1.12) rotate(8deg);
}

.milestone:hover .circle span {
    color: white;
}


/* TEXT */

.milestone-text {
    width: 220px;
}

.milestone-text small {
    color: #c749d7;
    letter-spacing: 2px;
}

.milestone-text h3 {
    font-size: 26px;
    margin: 7px 0;
    color: #222;
}

.milestone-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}


/* POSITION ACCORDING TO YOUR DRAWING */

.m1 {
    left: 16%;
    top: 120px;
}

.m2 {
    left: 32%;
    top: 280px;
}

.m3 {
    left: 55%;
    top: 340px;
}

.m4 {
    left: 74%;
    top: 530px;
}


/* ALTERNATE TEXT POSITIONS */

.m2,
.m4 {
    flex-direction: column;
    align-items: flex-start;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .journey-content {
        min-height: auto;
        padding: 80px 25px;
    }

    .journey-title {
        position: relative;
        top: auto;
        right: auto;
        text-align: left;
        margin-bottom: 70px;
    }

    .journey-path {
        display: none;
    }

    .milestone {
        position: relative;
        left: auto !important;
        top: auto !important;

        margin-bottom: 60px;

        flex-direction: row;
        align-items: center;
    }

    .circle {
        min-width: 80px;
        width: 80px;
        height: 80px;
    }

    .milestone-text {
        width: auto;
    }
}

/* service section */
.services-section {
    background: linear-gradient(180deg, #faf9fc 0%, #ffffff 100%);
}

.badge-service {
    background: #f4f0ff;
    color: #c749d7;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 76, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(125, 76, 255, 0.15);
    box-shadow: 0 20px 60px rgba(125, 76, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.02);
}

.service-card:hover::before {
    opacity: 1;
}

/* Icon */
.service-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 50%;
    transition: 0.3s;
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #c749d7 0%, #6339e6 100%);
    transform: scale(1.05) rotate(-4deg);
}

.service-icon {
    font-size: 28px;
    color: #c749d7;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    color: white;
}

/* Image */
.service-img-wrapper {
    border-radius: 16px;
    background: #f4f0ff;
    aspect-ratio: 16/10;
}

.service-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

/* Link */
.service-link-btn {
    font-weight: 600;
    font-size: 14px;
    color: #c749d7;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 0.2s;
    position: relative;
    z-index: 2;
}

.service-link-btn i {
    transition: 0.2s;
    font-size: 14px;
}

.service-link-btn:hover {
    color: #6339e6;
}

.service-link-btn:hover i {
    transform: translateX(6px);
}

/* CTA Button */
.btn-service-cta {
    background: #c749d7;
    border: none;
    color: white;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
}

.btn-service-cta:hover {
    background: #6339e6;
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(125, 76, 255, 0.35);
    color: white;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .service-card {
        padding: 2rem 1.5rem !important;
    }

    .service-img-wrapper {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 576px) {
    .services-section .display-5 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem 1rem !important;
        border-radius: 20px;
    }

    .service-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .service-icon {
        font-size: 24px;
    }

    .service-img-wrapper {
        aspect-ratio: 16/10;
    }
}

.testimonial-section {
    background: #f8f5ff;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonial-section.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.testimonial-section::before,
.testimonial-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.testimonial-section::before {
    width: 500px;
    height: 500px;
    background: rgba(125, 76, 255, 0.08);
    top: -150px;
    left: -150px;
}

.testimonial-section::after {
    width: 400px;
    height: 400px;
    background: rgba(125, 76, 255, 0.06);
    bottom: -100px;
    right: -100px;
}

.testimonial-section .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #c749d7;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #1e1a2b;
    position: relative;
    display: inline-block;
}

.doodle-left,
.doodle-right {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}

@media (max-width: 576px) {

    .doodle-left,
    .doodle-right {
        display: none;
    }
}

/* ----- Glassmorphism Card ----- */
.glass-card {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(125, 76, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.02);
    border-radius: 28px !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 360px;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(125, 76, 255, 0.10), 0 12px 32px rgba(0, 0, 0, 0.04);
}

/* Quote Icon */
.quote-icon-bg {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 72px;
    color: rgba(125, 76, 255, 0.06);
    line-height: 1;
    pointer-events: none;
}

.quote-icon-bg i {
    display: block;
}

/* Avatar */
.avatar-wrapper {
    flex-shrink: 0;
}

.avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid rgba(125, 76, 255, 0.15);
    transition: 0.3s;
}

.glass-card:hover .avatar-img {
    border-color: #c749d7;
}

/* Stars */
.stars i {
    font-size: 18px;
    letter-spacing: 2px;
}

/* Testimonial Text */
.testimonial-text {
    color: #1e1a2b;
    font-size: 1.1rem;
    line-height: 1.7;
    transition: opacity 0.4s ease, transform 0.4s ease;
    min-height: 100px;
}

.testimonial-text.fade-out {
    opacity: 0;
    transform: translateY(12px);
}

.testimonial-text.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Controls */
.btn-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(125, 76, 255, 0.15);
    background: white;
    color: #1e1a2b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
    font-size: 18px;
}

.btn-arrow:hover {
    background: #c749d7;
    border-color: #c749d7;
    color: white;
    transform: scale(1.05);
}

.btn-arrow:active {
    transform: scale(0.95);
}

.pagination-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d5cee3;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #c749d7;
    width: 28px;
    border-radius: 20px;
}

.dot:hover {
    background: #c749d7;
    opacity: 0.7;
}

/* ----- Image Container (Right Column) with Dynamic Shapes ----- */
.image-container {
    perspective: 1200px;
}

.blob-image-wrapper {
    background: #f0ebff;
    overflow: hidden;
    transition: border-radius 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s ease;
    box-shadow: 0 20px 60px rgba(125, 76, 255, 0.10);
    aspect-ratio: 4/3;
    /* Initial blob shape - will be changed by JS */
    border-radius: 60% 40% 50% 50% / 40% 50% 60% 50%;
}

.blob-image-wrapper.shape-0 {
    border-radius: 60% 40% 50% 50% / 40% 50% 60% 50%;
}

.blob-image-wrapper.shape-1 {
    border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
}

.blob-image-wrapper.shape-2 {
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
}

.blob-image-wrapper.shape-3 {
    border-radius: 30% 70% 50% 50% / 50% 40% 60% 50%;
}

.blob-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(125, 76, 255, 0.15);
}

.blob-image {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.blob-image.image-fade-out {
    opacity: 0;
    transform: scale(1.05);
}

.blob-image.image-fade-in {
    opacity: 1;
    transform: scale(1);
}

.blob-image-wrapper:hover .blob-image {
    transform: scale(1.06);
}

/* ----- Floating Elements ----- */
.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
}

.floating-element i {
    font-size: 28px;
    color: #c749d7;
    opacity: 0.7;
    filter: drop-shadow(0 4px 12px rgba(125, 76, 255, 0.15));
}

.float-1 {
    top: 5%;
    left: -8%;
    animation-delay: 0s;
    font-size: 32px;
}

.float-2 {
    bottom: 10%;
    right: -6%;
    animation-delay: 1.2s;
    font-size: 36px;
}

.float-3 {
    top: 20%;
    right: -4%;
    animation-delay: 2.4s;
    font-size: 30px;
}

.float-4 {
    width: 18px;
    height: 18px;
    background: rgba(125, 76, 255, 0.12);
    bottom: 25%;
    left: -5%;
    animation-delay: 0.6s;
}

.float-5 {
    width: 12px;
    height: 12px;
    background: rgba(125, 76, 255, 0.08);
    top: 45%;
    right: -3%;
    animation-delay: 1.8s;
}

.float-6 {
    width: 24px;
    height: 24px;
    background: rgba(125, 76, 255, 0.06);
    bottom: 40%;
    left: -3%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(6deg);
    }
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .glass-card {
        min-height: auto;
    }

    .blob-image-wrapper {
        aspect-ratio: 16/10;
    }

    .float-1 {
        left: -4%;
    }

    .float-2 {
        right: -4%;
    }

    .float-3 {
        right: -2%;
    }

    .float-4 {
        left: -2%;
    }

    .float-5 {
        right: -2%;
    }

    .float-6 {
        left: -2%;
    }
}

@media (max-width: 768px) {
    .testimonial-section .display-4 {
        font-size: 2.2rem;
    }

    .glass-card {
        padding: 1.8rem !important;
    }

    .testimonial-text {
        font-size: 1rem;
        min-height: 80px;
    }

    .quote-icon-bg {
        font-size: 48px;
        right: 12px;
        top: 12px;
    }

    .floating-element i {
        font-size: 20px;
    }

    .float-1 {
        font-size: 24px;
    }

    .float-2 {
        font-size: 26px;
    }

    .float-3 {
        font-size: 22px;
    }

    .float-4,
    .float-5,
    .float-6 {
        display: none;
    }

    .blob-image-wrapper {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .glass-card {
        padding: 1.2rem !important;
        border-radius: 20px !important;
    }

    .avatar-img {
        width: 48px;
        height: 48px;
    }

    .customer-name {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        min-height: 70px;
    }

    .btn-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }

    .floating-element {
        display: none;
    }

    .blob-image-wrapper {
        border-radius: 30% 40% 20% 50% / 40% 30% 50% 40% !important;
    }
}

.video-testimonials-section {
    background: linear-gradient(180deg, #faf9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.video-testimonials-section.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.video-testimonials-section::before,
.video-testimonials-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.video-testimonials-section::before {
    width: 400px;
    height: 400px;
    background: rgba(125, 76, 255, 0.06);
    top: -100px;
    right: -100px;
}

.video-testimonials-section::after {
    width: 300px;
    height: 300px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -80px;
    left: -80px;
}

.video-testimonials-section .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #c749d7;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #1e1a2b;
    position: relative;
    display: inline-block;
}

.doodle-left,
.doodle-right {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}

@media (max-width: 576px) {

    .doodle-left,
    .doodle-right {
        display: none;
    }
}

/* ----- Video Card ----- */
.video-card {
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-card:hover {
    transform: translateY(-8px);
}

.video-thumbnail-wrapper {
    background: #1e1a2b;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.4s ease;
}

.video-card:hover .video-thumbnail-wrapper {
    box-shadow: 0 16px 48px rgba(125, 76, 255, 0.12);
}

.video-thumbnail {
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.04);
}

/* Play Overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 26, 43, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
    backdrop-filter: blur(2px);
}

.video-card:hover .play-overlay {
    background: rgba(30, 26, 43, 0.40);
}

.play-button {
    width: 72px;
    height: 72px;
    background: rgba(125, 76, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.30);
}

.play-button i {
    font-size: 32px;
    color: white;
    margin-left: 4px;
}

.video-card:hover .play-button {
    transform: scale(1.12);
    background: #c749d7;
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.45);
}

/* Video Duration Badge */
.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* Video Info */
.video-info {
    transition: transform 0.3s ease;
}

.video-card:hover .video-info {
    transform: translateX(4px);
}

.video-info img {
    border: 2px solid rgba(125, 76, 255, 0.10);
    transition: border-color 0.3s ease;
}

.video-card:hover .video-info img {
    border-color: #c749d7;
}

/* ----- Video Modal ----- */
.modal-content {
    background: transparent;
    border: none;
}

.btn-close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(8px);
    z-index: 10;
    cursor: pointer;
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.30);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Modal backdrop override */
.modal-backdrop.show {
    backdrop-filter: blur(12px);
    background: rgba(30, 26, 43, 0.80);
}

/* ----- CTA Button ----- */
.btn-video-cta {
    background: #c749d7;
    border: none;
    color: white;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
}

.btn-video-cta:hover {
    background: #6339e6;
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(125, 76, 255, 0.35);
    color: white;
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .video-testimonials-section {
        padding: 60px 0;
    }

    .video-thumbnail {
        height: 200px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .video-testimonials-section .display-4 {
        font-size: 2.2rem;
    }

    .video-thumbnail {
        height: 180px;
    }

    .play-button {
        width: 56px;
        height: 56px;
    }

    .play-button i {
        font-size: 24px;
    }

    .btn-close-modal {
        top: -44px;
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .video-testimonials-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .video-thumbnail {
        height: 160px;
    }

    .play-button {
        width: 48px;
        height: 48px;
    }

    .play-button i {
        font-size: 20px;
    }

    .video-duration {
        font-size: 11px;
        padding: 2px 10px;
    }

    .btn-close-modal {
        top: -40px;
        right: 4px;
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
}

.trusted-experts-section {
    background: linear-gradient(180deg, #ffffff 0%, #faf9fc 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.trusted-experts-section.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.trusted-experts-section::before,
.trusted-experts-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.trusted-experts-section::before {
    width: 400px;
    height: 400px;
    background: rgba(125, 76, 255, 0.05);
    top: -150px;
    left: -150px;
}

.trusted-experts-section::after {
    width: 300px;
    height: 300px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -100px;
    right: -100px;
}

.trusted-experts-section .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #c749d7;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #1e1a2b;
}

/* ----- Image Container ----- */
.experts-image-wrapper {
    perspective: 1200px;
}

.image-blob-wrapper {
    background: #f0ebff;
    border-radius: 50% 40% 40% 50% / 40% 50% 50% 40%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(125, 76, 255, 0.10);
    aspect-ratio: 4/3;
    transition: border-radius 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-blob-wrapper:hover {
    border-radius: 40% 50% 30% 60% / 50% 40% 60% 40%;
}

.experts-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-blob-wrapper:hover .experts-image {
    transform: scale(1.05);
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: white;
    padding: 12px 24px;
    border-radius: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    font-weight: 600;
    font-size: 14px;
    color: #1e1a2b;
    display: flex;
    align-items: center;
    animation: floatBadge 3s ease-in-out infinite;
    border: 1px solid rgba(125, 76, 255, 0.08);
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Decorative Elements */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(125, 76, 255, 0.06);
}

.deco-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    left: -20px;
    animation: floatCircle 6s ease-in-out infinite;
}

.deco-2 {
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: -15px;
    background: rgba(125, 76, 255, 0.04);
    animation: floatCircle 5s ease-in-out infinite 1s;
}

.deco-paw {
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 32px;
    color: #c749d7;
    opacity: 0.12;
    animation: floatPaw 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

@keyframes floatPaw {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}

/* ----- Stat Boxes ----- */
.stat-box {
    background: white;
    padding: 20px 24px;
    border-radius: 20px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 76, 255, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.08);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #c749d7;
    line-height: 1.2;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    color: #5e576d;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.stat-label i {
    font-size: 16px;
}

/* ----- Trust Badges ----- */
.badge-trust {
    background: #f4f0ff;
    color: #1e1a2b;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.badge-trust:hover {
    background: #c749d7;
    color: white;
    transform: translateY(-2px);
}

.badge-trust i {
    font-size: 14px;
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .trusted-experts-section {
        padding: 60px 0;
    }

    .image-blob-wrapper {
        aspect-ratio: 16/10;
    }

    .stat-number {
        font-size: 2rem;
    }

    .floating-badge {
        padding: 10px 20px;
        font-size: 13px;
        bottom: 15px;
        right: 0;
    }
}

@media (max-width: 768px) {
    .trusted-experts-section .display-4 {
        font-size: 2.2rem;
    }

    .stat-box {
        padding: 16px 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .floating-badge {
        padding: 8px 16px;
        font-size: 12px;
        bottom: 10px;
        right: 4px;
    }

    .deco-circle {
        display: none;
    }
}

@media (max-width: 576px) {
    .trusted-experts-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .image-blob-wrapper {
        aspect-ratio: 4/3;
        border-radius: 30% 40% 20% 50% / 40% 30% 50% 40% !important;
    }

    .stat-box {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .floating-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        display: inline-flex;
        width: fit-content;
    }

    .trust-badges {
        flex-direction: column;
        gap: 8px !important;
    }

    .badge-trust {
        width: 100%;
        text-align: center;
    }
}

.contact-section {
    background: linear-gradient(180deg, #faf9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-section.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.contact-section::before,
.contact-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.contact-section::before {
    width: 500px;
    height: 500px;
    background: rgba(125, 76, 255, 0.06);
    top: -200px;
    right: -200px;
}

.contact-section::after {
    width: 350px;
    height: 350px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -150px;
    left: -150px;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #c749d7;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #1e1a2b;
}

/* ----- Contact Details ----- */
.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(6px);
}

.contact-icon-wrapper {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #f4f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c749d7;
    font-size: 18px;
    transition: 0.3s;
}

.contact-item:hover .contact-icon-wrapper {
    background: #c749d7;
    color: white;
    transform: scale(1.05);
}

/* ----- Contact CTA Button ----- */
.btn-contact-cta {
    background: #c749d7;
    border: none;
    color: white;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
}

.btn-contact-cta:hover {
    background: #6339e6;
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(125, 76, 255, 0.35);
    color: white;
}

/* ----- Social Links ----- */
.social-link-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f4f0ff;
    color: #c749d7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.social-link-icon:hover {
    background: #c749d7;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(125, 76, 255, 0.25);
}

/* ----- Image Container ----- */
.contact-image-wrapper {
    perspective: 1200px;
}

.image-blob-wrapper {
    background: #f0ebff;
    border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(125, 76, 255, 0.10);
    aspect-ratio: 4/3;
    transition: border-radius 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-blob-wrapper:hover {
    border-radius: 50% 40% 50% 40% / 40% 50% 40% 60%;
}

.contact-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-blob-wrapper:hover .contact-image {
    transform: scale(1.05);
}

/* ----- Pet Decorations (Floating) ----- */
.pet-deco {
    position: absolute;
    pointer-events: none;
    animation: floatPet 4s ease-in-out infinite;
}

.pet-deco i {
    font-size: 28px;
    color: #c749d7;
    opacity: 0.5;
    filter: drop-shadow(0 4px 12px rgba(125, 76, 255, 0.10));
}

.deco-paw-1 {
    top: 8%;
    left: -6%;
    animation-delay: 0s;
    font-size: 32px;
}

.deco-paw-1 i {
    font-size: 32px;
    opacity: 0.4;
}

.deco-paw-2 {
    bottom: 12%;
    right: -6%;
    animation-delay: 1.5s;
    font-size: 28px;
}

.deco-paw-2 i {
    font-size: 28px;
    opacity: 0.35;
}

.deco-bone {
    top: 25%;
    right: -4%;
    animation-delay: 2.5s;
    font-size: 30px;
}

.deco-bone i {
    font-size: 30px;
    opacity: 0.3;
    color: #e8a87c;
}

.deco-heart {
    bottom: 30%;
    left: -4%;
    animation-delay: 1s;
    font-size: 26px;
}

.deco-heart i {
    font-size: 26px;
    opacity: 0.35;
    color: #ff6b6b;
}

.deco-dog {
    top: 45%;
    right: -3%;
    font-size: 36px;
    animation-delay: 0.5s;
    opacity: 0.3;
}

.deco-cat {
    bottom: 45%;
    left: -3%;
    font-size: 32px;
    animation-delay: 2s;
    opacity: 0.3;
}

.deco-circle-1 {
    width: 20px;
    height: 20px;
    background: rgba(125, 76, 255, 0.06);
    border-radius: 50%;
    top: 15%;
    left: 10%;
    animation-delay: 0.3s;
    animation: floatPet 5s ease-in-out infinite;
}

.deco-circle-2 {
    width: 14px;
    height: 14px;
    background: rgba(125, 76, 255, 0.04);
    border-radius: 50%;
    bottom: 20%;
    right: 12%;
    animation-delay: 1.8s;
    animation: floatPet 4.5s ease-in-out infinite;
}

@keyframes floatPet {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-16px) rotate(6deg) scale(1.05);
    }
}

/* ----- Floating Badge ----- */
.floating-badge-contact {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: white;
    padding: 12px 24px;
    border-radius: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    font-weight: 600;
    font-size: 14px;
    color: #1e1a2b;
    display: flex;
    align-items: center;
    animation: floatBadgeContact 3s ease-in-out infinite;
    border: 1px solid rgba(125, 76, 255, 0.08);
}

@keyframes floatBadgeContact {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }

    .image-blob-wrapper {
        aspect-ratio: 16/10;
    }

    .floating-badge-contact {
        padding: 10px 20px;
        font-size: 13px;
        bottom: 15px;
        right: 0;
    }

    .pet-deco i {
        font-size: 22px;
    }

    .deco-paw-1 i {
        font-size: 26px;
    }

    .deco-paw-2 i {
        font-size: 24px;
    }

    .deco-bone i {
        font-size: 24px;
    }

    .deco-heart i {
        font-size: 22px;
    }

    .deco-dog {
        font-size: 28px;
    }

    .deco-cat {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .contact-section .display-4 {
        font-size: 2.2rem;
    }

    .contact-item {
        gap: 12px !important;
    }

    .contact-icon-wrapper {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 16px;
    }

    .floating-badge-contact {
        padding: 8px 16px;
        font-size: 12px;
        bottom: 10px;
        right: 4px;
    }

    .pet-deco {
        display: none;
    }

    .image-blob-wrapper {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .image-blob-wrapper {
        border-radius: 30% 40% 20% 50% / 40% 30% 50% 40% !important;
    }

    .btn-contact-cta {
        width: 100%;
        justify-content: center;
    }

    .contact-details {
        font-size: 0.95rem;
    }

    .floating-badge-contact {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        display: inline-flex;
        width: fit-content;
    }

    .social-links {
        justify-content: center;
    }
}

.blog-section {
    background: linear-gradient(180deg, #ffffff 0%, #faf9fc 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.blog-section.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.blog-section::before,
.blog-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.blog-section::before {
    width: 400px;
    height: 400px;
    background: rgba(125, 76, 255, 0.05);
    top: -150px;
    left: -150px;
}

.blog-section::after {
    width: 350px;
    height: 350px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -100px;
    right: -100px;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #c749d7;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #1e1a2b;
    position: relative;
    display: inline-block;
}

.doodle-left,
.doodle-right {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}

@media (max-width: 576px) {

    .doodle-left,
    .doodle-right {
        display: none;
    }
}

/* ----- Featured Blog ----- */
.featured-blog {
    background: white;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.4s;
}

.featured-blog:hover {
    box-shadow: 0 16px 60px rgba(125, 76, 255, 0.08);
    transform: translateY(-4px);
}

.featured-image-wrapper {
    position: relative;
}

.featured-blob {
    border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f0ebff;
    transition: border-radius 0.8s ease;
}

.featured-blob:hover {
    border-radius: 50% 40% 50% 40% / 40% 50% 40% 60%;
}

.featured-img {
    transition: transform 0.6s ease;
    display: block;
}

.featured-blob:hover .featured-img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #c749d7;
    color: white;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.floating-paw-deco {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 40px;
    color: #c749d7;
    opacity: 0.08;
    animation: floatPawDeco 4s ease-in-out infinite;
}

@keyframes floatPawDeco {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}

.blog-category {
    background: rgba(125, 76, 255, 0.08);
    color: #c749d7;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
}

.blog-date {
    color: #a59db3;
    font-size: 14px;
}

.btn-blog-featured {
    background: #c749d7;
    border: none;
    color: white;
    transition: 0.3s;
}

.btn-blog-featured:hover {
    background: #6339e6;
    transform: translateX(4px);
    color: white;
}

/* ----- Blog Cards ----- */
.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(125, 76, 255, 0.08);
    border-color: rgba(125, 76, 255, 0.10);
}

.blog-thumb-wrapper {
    background: #f4f0ff;
}

.blog-thumb {
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.blog-card:hover .blog-thumb {
    transform: scale(1.04);
}

.blog-category-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(8px);
    color: white;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.blog-card-body {
    padding: 20px 20px 24px !important;
}

.blog-meta {
    font-size: 13px;
    color: #a59db3;
}

.blog-date-small {
    color: #a59db3;
}

.blog-read-time {
    color: #a59db3;
    position: relative;
    padding-left: 12px;
}

.blog-read-time::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d5cee3;
}

.blog-link {
    color: #c749d7;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 0.3s;
}

.blog-link i {
    transition: 0.3s;
    font-size: 14px;
}

.blog-link:hover {
    color: #6339e6;
}

.blog-link:hover i {
    transform: translateX(6px);
}

/* ----- CTA Button ----- */
.btn-blog-cta {
    background: #c749d7;
    border: none;
    color: white;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
}

.btn-blog-cta:hover {
    background: #6339e6;
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(125, 76, 255, 0.35);
    color: white;
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .blog-section {
        padding: 60px 0;
    }

    .featured-blog {
        padding: 20px;
    }

    .featured-blob {
        aspect-ratio: 16/10;
    }

    .blog-thumb {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-section .display-4 {
        font-size: 2.2rem;
    }

    .featured-blog {
        padding: 16px;
        border-radius: 20px;
    }

    .featured-blob {
        aspect-ratio: 4/3;
    }

    .blog-thumb {
        height: 180px;
    }

    .blog-card-body {
        padding: 16px !important;
    }

    .floating-paw-deco {
        display: none;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .featured-blog {
        padding: 12px;
        border-radius: 16px;
    }

    .featured-blob {
        border-radius: 30% 40% 20% 50% / 40% 30% 50% 40% !important;
    }

    .blog-thumb {
        height: 160px;
    }

    .blog-card {
        border-radius: 18px;
    }

    .blog-card-body {
        padding: 14px !important;
    }

    .blog-meta {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 8px !important;
    }

    .btn-blog-cta {
        width: 100%;
        justify-content: center;
    }

    .btn-blog-featured {
        width: 100%;
        justify-content: center;
    }
}




/* ******header***** */
.navbar-paw {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    padding: 12px 0;
    border-bottom: 1px solid rgba(125, 76, 255, 0.08);
}

.navbar-paw .navbar-brand img {
    width: 50%;
    transition: 0.2s;
}

.navbar-paw .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #1e1a2b;
    padding: 10px 18px;
    border-radius: 40px;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.navbar-paw .navbar-nav .nav-link:hover,
.navbar-paw .navbar-nav .nav-link.active {
    background: #f4f0ff;
    color: #c749d7;
}

.navbar-paw .navbar-nav .nav-link.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
    transition: 0.2s;
}

.navbar-paw .btn-outline-paw {
    background: #c749d7;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 28px;
    border-radius: 40px;
    transition: 0.2s;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 12px rgba(125, 76, 255, 0.25);
}

.navbar-paw .btn-outline-paw:hover {
    background: #6339e6;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(125, 76, 255, 0.3);
    color: white;
}

/* ----- mega dropdown (redesigned) ----- */
.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    border: none;
    border-radius: 24px;
    padding: 32px 40px 40px;
    margin-top: 8px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(125, 76, 255, 0.06);
    border: 1px solid rgba(125, 76, 255, 0.06);
    backdrop-filter: blur(2px);
}

/* left menu — service links */
.service-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    color: #1e1a2b;
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.service-link i {
    font-size: 20px;
    width: 28px;
    color: #c749d7;
    opacity: 0.6;
    transition: 0.2s;
}

.service-link:hover,
.service-link.active {
    background: #f4f0ff;
    color: #c749d7;
}

.service-link:hover i,
.service-link.active i {
    opacity: 1;
}

.service-link.active {
    font-weight: 600;
    background: #f0ebff;
}

/* right content boxes */
.content-box {
    display: none;
    animation: fadeSlide 0.3s ease forwards;
}

.content-box.show {
    display: block;
}

.content-box h4 {
    font-weight: 700;
    font-size: 22px;
    color: #1e1a2b;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.content-box p {
    color: #4a4458;
    font-size: 15px;
    line-height: 1.6;
}

.content-box .service-card-img {
    border-radius: 20px;
    width: 100%;
    height: 180px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: 0.2s;
}

.content-box .service-card-img:hover {
    transform: scale(1.02);
}

.content-box .card-title {
    font-weight: 600;
    font-size: 16px;
    margin-top: 12px;
    color: #1e1a2b;
}

.content-box .badge-soft {
    background: #f0ebff;
    color: #c749d7;
    font-weight: 500;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 40px;
    margin-top: 4px;
    display: inline-block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* hover on dropdown parent to show (optional) */
.dropdown:hover>.dropdown-menu {
    display: block;
}

/* mobile adjustments */
@media (max-width: 991px) {
    .mega-menu {
        padding: 24px 20px;
        border-radius: 20px;
        margin-top: 4px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }

    .navbar-paw .navbar-nav .nav-link {
        padding: 8px 16px;
    }

    .service-link {
        font-size: 16px;
        padding: 10px 16px;
    }

    .content-box .service-card-img {
        height: 140px;
    }

    .navbar-paw .btn-outline-paw {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    .mega-menu {
        padding: 16px;
    }

    .content-box .service-card-img {
        height: 120px;
    }
}

/* tiny spacer */
.spacer {
    flex: 1;
}



/* *****footer*****  */
/* ----- FOOTER (redesigned, matching style) ----- */
.footer-paw {
    background-color: #000;
    border-top: 1px solid rgba(125, 76, 255, 0.08);
    padding: 30px 0 15px;
    margin-top: auto;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.02);
}

.footer-paw .footer-brand {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: #1e1a2b;
    text-decoration: none;
}

.footer-paw .footer-brand img {
    height: 44px;
    width: auto;
}

.footer-paw .footer-desc {
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-paw .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 40px;
    background: #f4f0ff;
    color: #c749d7;
    font-size: 20px;
    transition: 0.2s;
    text-decoration: none;
}

.footer-paw .social-link:hover {
    background: #c749d7;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(125, 76, 255, 0.25);
}

.footer-paw h6 {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.footer-paw .footer-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 5px 0;
    transition: 0.2s;
}

.footer-paw .footer-link:hover {
    color: #c749d7;
    padding-left: 6px;
}

.footer-paw .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-paw .footer-contact-item i {
    color: #c749d7;
    font-size: 18px;
    margin-top: 2px;
    min-width: 20px;
}

.footer-paw .footer-divider {
    border-color: rgba(125, 76, 255, 0.06);
    margin: 30px 0 20px;
}

.footer-paw .footer-copy {
    color: #fff;
    font-size: 14px;
}

.footer-paw .footer-copy a {
    color: #7d4cff;
    text-decoration: none;
    font-weight: 500;
}

.footer-paw .footer-copy a:hover {
    text-decoration: underline;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 991px) {


    .footer-paw {
        padding: 40px 0 20px;
    }

    .footer-paw .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .mega-menu {
        padding: 16px;
    }


    .footer-paw .footer-brand img {
        height: 36px;
    }
}





/* ********about******** */
/* ----- About Page ----- */
.about-page {
    background: linear-gradient(180deg, #faf9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-page.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.about-page::before,
.about-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.about-page::before {
    width: 500px;
    height: 500px;
    background: rgba(125, 76, 255, 0.05);
    top: -200px;
    right: -200px;
}

.about-page::after {
    width: 400px;
    height: 400px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -150px;
    left: -150px;
}

.about-page .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #c749d7;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    border: none;
}

.text-primary {
    color: #c749d7 !important;
}

.display-3 {
    font-size: 3.5rem;
}

.display-5 {
    font-size: 2.5rem;
}

/* ----- About Stats ----- */
.about-stat {
    background: white;
    padding: 12px 24px;
    border-radius: 16px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.stat-number-lg {
    font-size: 28px;
    font-weight: 800;
    color: #c749d7;
    display: block;
    line-height: 1.2;
}

.stat-label-sm {
    font-size: 13px;
    color: #5e576d;
    font-weight: 500;
}

/* ----- Buttons ----- */
.btn-about-primary {
    background: #c749d7;
    border: none;
    color: white;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
}

.btn-about-primary:hover {
    background: #6339e6;
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(125, 76, 255, 0.35);
    color: white;
}

/* ----- About Image ----- */
.about-image-wrapper {
    perspective: 1200px;
}

.about-blob {
    background: #f0ebff;
    border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(125, 76, 255, 0.10);
    aspect-ratio: 4/3;
    transition: border-radius 0.8s ease;
}

.about-blob:hover {
    border-radius: 50% 40% 50% 40% / 40% 50% 40% 60%;
}

.about-img {
    transition: transform 0.6s ease;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-blob:hover .about-img {
    transform: scale(1.05);
}

/* ----- Floating Decorations ----- */
.about-deco {
    position: absolute;
    pointer-events: none;
    animation: floatAbout 4s ease-in-out infinite;
}

.about-deco i {
    font-size: 28px;
    opacity: 0.4;
    color: #c749d7;
}

.deco-heart-about {
    top: 8%;
    right: -4%;
    animation-delay: 0s;
}

.deco-heart-about i {
    color: #ff6b6b;
    font-size: 32px;
    opacity: 0.3;
}

.deco-paw-about {
    bottom: 12%;
    left: -4%;
    animation-delay: 1.5s;
}

.deco-paw-about i {
    font-size: 30px;
    opacity: 0.35;
}

.deco-bone-about {
    top: 30%;
    right: -3%;
    animation-delay: 2.5s;
}

.deco-bone-about i {
    font-size: 26px;
    opacity: 0.3;
    color: #e8a87c;
}

.deco-circle-about-1 {
    width: 18px;
    height: 18px;
    background: rgba(125, 76, 255, 0.05);
    border-radius: 50%;
    bottom: 30%;
    left: 8%;
    animation-delay: 0.8s;
    animation: floatAbout 5s ease-in-out infinite;
}

.deco-circle-about-2 {
    width: 12px;
    height: 12px;
    background: rgba(125, 76, 255, 0.04);
    border-radius: 50%;
    top: 45%;
    right: 10%;
    animation-delay: 2s;
    animation: floatAbout 4.5s ease-in-out infinite;
}

@keyframes floatAbout {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-16px) rotate(6deg);
    }
}

.floating-badge-about {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: white;
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    font-weight: 600;
    font-size: 14px;
    color: #1e1a2b;
    display: flex;
    align-items: center;
    animation: floatBadgeAbout 3s ease-in-out infinite;
    border: 1px solid rgba(125, 76, 255, 0.08);
}

@keyframes floatBadgeAbout {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* ----- Story Section ----- */
.story-blob {
    border-radius: 50% 40% 40% 60% / 40% 50% 60% 40%;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f0ebff;
    transition: border-radius 0.8s ease;
    box-shadow: 0 20px 60px rgba(125, 76, 255, 0.08);
}

.story-blob:hover {
    border-radius: 40% 50% 30% 70% / 50% 40% 60% 40%;
}

.story-img {
    transition: transform 0.6s ease;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-blob:hover .story-img {
    transform: scale(1.05);
}

.story-deco {
    position: absolute;
    font-size: 40px;
    opacity: 0.15;
    animation: floatStory 5s ease-in-out infinite;
    pointer-events: none;
}

.dog-icon {
    top: -10px;
    right: -10px;
    animation-delay: 0s;
    font-size: 48px;
}

.cat-icon {
    bottom: -10px;
    left: -10px;
    animation-delay: 2s;
    font-size: 42px;
}

@keyframes floatStory {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(8deg);
    }
}

.story-milestone {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.milestone-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #f4f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c749d7;
    font-size: 18px;
}

/* ----- Value Cards ----- */
.value-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.4s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 16px 48px rgba(125, 76, 255, 0.08);
}

.value-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #c749d7;
    transition: 0.3s;
}

.value-card:hover .value-icon-wrapper {
    background: #c749d7;
    color: white;
    transform: scale(1.05);
}

/* ----- Team Cards ----- */
.team-card {
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.4s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 16px 48px rgba(125, 76, 255, 0.08);
}

.team-avatar-wrapper {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid rgba(125, 76, 255, 0.10);
    transition: 0.3s;
}

.team-card:hover .team-avatar-wrapper {
    border-color: #c749d7;
    transform: scale(1.04);
}

.team-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f0ff;
    color: #c749d7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.team-social-link:hover {
    background: #c749d7;
    color: white;
    transform: translateY(-2px);
}

/* ----- About CTA ----- */
.about-cta {
    border: 1px solid rgba(125, 76, 255, 0.06);
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.04);
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .about-page {
        padding: 60px 0;
    }

    .about-page .display-3 {
        font-size: 2.8rem;
    }

    .about-blob,
    .story-blob {
        aspect-ratio: 16/10;
    }

    .floating-badge-about {
        padding: 8px 16px;
        font-size: 12px;
        bottom: 15px;
        right: 0;
    }

    .about-deco {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-page .display-3 {
        font-size: 2.2rem;
    }

    .about-page .display-5 {
        font-size: 1.8rem;
    }

    .about-stat {
        padding: 10px 16px;
    }

    .stat-number-lg {
        font-size: 22px;
    }

    .value-card {
        padding: 1.5rem !important;
    }

    .team-card {
        padding: 1.5rem !important;
    }

    .story-deco {
        display: none;
    }

    .floating-badge-about {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        display: inline-flex;
        width: fit-content;
    }

    .about-cta {
        padding: 2rem !important;
    }
}

@media (max-width: 576px) {
    .about-page {
        padding: 40px 0;
    }

    .about-page .display-3 {
        font-size: 1.8rem;
    }

    .about-page .display-5 {
        font-size: 1.5rem;
    }

    .about-blob,
    .story-blob {
        border-radius: 30% 40% 20% 50% / 40% 30% 50% 40% !important;
    }

    .btn-about-primary {
        width: 100%;
        justify-content: center;
    }

    .story-milestone {
        width: 100%;
    }

    .value-card {
        padding: 1.2rem !important;
    }

    .team-card {
        padding: 1.2rem !important;
    }

    .team-avatar-wrapper {
        width: 80px;
        height: 80px;
    }

    .about-cta {
        padding: 1.5rem !important;
    }
}

/* ----- Explore Breeds Section ----- */
.explore-breeds-page {
    background: linear-gradient(180deg, #faf9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    padding: 40px 0 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-breeds-page.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.explore-breeds-page::before,
.explore-breeds-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.explore-breeds-page::before {
    width: 500px;
    height: 500px;
    background: rgba(125, 76, 255, 0.05);
    top: -200px;
    right: -200px;
}

.explore-breeds-page::after {
    width: 400px;
    height: 400px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -150px;
    left: -150px;
}

.explore-breeds-page .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #c749d7;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    border: none;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #1e1a2b;
    position: relative;
    display: inline-block;
}

.doodle-left,
.doodle-right {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}

@media (max-width: 576px) {

    .doodle-left,
    .doodle-right {
        display: none;
    }
}

.text-primary {
    color: #c749d7 !important;
}

/* ----- Filter Buttons ----- */
.filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 40px;
    border: 2px solid rgba(125, 76, 255, 0.12);
    background: white;
    color: #5e576d;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: #c749d7;
    color: #c749d7;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(125, 76, 255, 0.08);
}

.filter-btn.active {
    background: #c749d7;
    border-color: #c749d7;
    color: white;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
}

.filter-btn i {
    margin-right: 8px;
}

/* ----- Breed Cards ----- */
.breed-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    height: 100%;
    position: relative;
}

.breed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(125, 76, 255, 0.10);
    border-color: rgba(125, 76, 255, 0.10);
}

.breed-card .breed-thumb-wrapper {
    background: #f4f0ff;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.breed-card .breed-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.breed-card:hover .breed-thumb {
    transform: scale(1.06);
}

.breed-card .breed-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    color: #c749d7;
    border: 1px solid rgba(125, 76, 255, 0.08);
}

.breed-card .breed-body {
    padding: 20px 20px 24px;
}

.breed-card .breed-name {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: #1e1a2b;
}

.breed-card .breed-origin {
    font-size: 13px;
    color: #a59db3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.breed-card .breed-origin i {
    font-size: 14px;
}

.breed-card .breed-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 14px;
}

.breed-card .breed-tag {
    background: #f4f0ff;
    color: #c749d7;
    padding: 2px 12px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 500;
}

.breed-card .breed-description {
    font-size: 14px;
    color: #5e576d;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.breed-card .breed-link {
    color: #c749d7;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 0.3s;
}

.breed-card .breed-link i {
    transition: 0.3s;
    font-size: 14px;
}

.breed-card .breed-link:hover {
    color: #6339e6;
}

.breed-card .breed-link:hover i {
    transform: translateX(6px);
}

.breed-card .breed-size {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(4px);
    color: white;
    padding: 2px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 500;
}

/* ----- No Results ----- */
.no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.no-results.show {
    display: block;
}

.no-results i {
    font-size: 64px;
    color: #d5cee3;
    margin-bottom: 16px;
}

.no-results h4 {
    color: #1e1a2b;
    font-weight: 700;
}

.no-results p {
    color: #a59db3;
}

/* ----- Breed Cards Grid Animation ----- */
.breed-item {
    transition: all 0.5s ease;
}

.breed-item.hide {
    display: none;
}

.breed-item.show {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .explore-breeds-page {
        padding: 30px 0 50px;
    }

    .explore-breeds-page .display-4 {
        font-size: 2.5rem;
    }

    .breed-card .breed-thumb-wrapper {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 768px) {
    .explore-breeds-page .display-4 {
        font-size: 2rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .breed-card .breed-body {
        padding: 16px 16px 20px;
    }

    .breed-card .breed-name {
        font-size: 1rem;
    }

    .breed-card .breed-description {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 576px) {
    .explore-breeds-page {
        padding: 20px 0 40px;
    }

    .explore-breeds-page .display-4 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .filter-wrapper {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .filter-btn i {
        margin-right: 4px;
    }

    .breed-card .breed-thumb-wrapper {
        aspect-ratio: 4/3;
    }

    .breed-card .breed-tags {
        gap: 4px;
    }

    .breed-card .breed-tag {
        font-size: 10px;
        padding: 2px 10px;
    }
}


/* ----- Blogs Page ----- */
.blogs-page {
    background: linear-gradient(180deg, #faf9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    padding: 40px 0 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.blogs-page.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.blogs-page::before,
.blogs-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.blogs-page::before {
    width: 500px;
    height: 500px;
    background: rgba(125, 76, 255, 0.05);
    top: -200px;
    right: -200px;
}

.blogs-page::after {
    width: 400px;
    height: 400px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -150px;
    left: -150px;
}

.blogs-page .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #c749d7;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    border: none;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #1e1a2b;
    position: relative;
    display: inline-block;
}

.doodle-left,
.doodle-right {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}

@media (max-width: 576px) {

    .doodle-left,
    .doodle-right {
        display: none;
    }
}

.text-primary {
    color: #c749d7 !important;
}

/* ----- Category Filter ----- */
.category-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-btn {
    padding: 10px 24px;
    border-radius: 40px;
    border: 2px solid rgba(125, 76, 255, 0.12);
    background: white;
    color: #5e576d;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover {
    border-color: #c749d7;
    color: #c749d7;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(125, 76, 255, 0.08);
}

.category-btn.active {
    background: #c749d7;
    border-color: #c749d7;
    color: white;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
}

.category-btn i {
    margin-right: 8px;
}

/* ----- Featured Post ----- */
.featured-post {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(125, 76, 255, 0.06);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    transition: 0.4s;
}

.featured-post:hover {
    box-shadow: 0 16px 60px rgba(125, 76, 255, 0.08);
    transform: translateY(-4px);
}

.featured-post .featured-thumb-wrapper {
    background: #f4f0ff;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.featured-post .featured-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.featured-post:hover .featured-thumb {
    transform: scale(1.04);
}

.featured-post .featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #c749d7;
    color: white;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.featured-post .featured-body {
    padding: 28px 32px 32px;
}

.featured-post .blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #a59db3;
    margin-bottom: 10px;
}

.featured-post .blog-category-tag {
    background: rgba(125, 76, 255, 0.08);
    color: #c749d7;
    padding: 2px 14px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 13px;
}

.featured-post .blog-title {
    font-weight: 700;
    font-size: 1.6rem;
    color: #1e1a2b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-post .blog-excerpt {
    color: #5e576d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.featured-post .blog-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.featured-post .blog-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(125, 76, 255, 0.10);
}

.featured-post .blog-author .author-name {
    font-weight: 600;
    font-size: 14px;
    color: #1e1a2b;
}

.featured-post .blog-author .author-role {
    font-size: 13px;
    color: #a59db3;
}

.btn-read-more {
    background: #c749d7;
    border: none;
    color: white;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-read-more:hover {
    background: #6339e6;
    transform: translateX(4px);
    color: white;
}

/* ----- Blog Cards ----- */
.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(125, 76, 255, 0.08);
    border-color: rgba(125, 76, 255, 0.10);
}

.blog-card .blog-thumb-wrapper {
    background: #f4f0ff;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.blog-card .blog-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.blog-card:hover .blog-thumb {
    transform: scale(1.04);
}

.blog-card .blog-category-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(8px);
    color: white;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.blog-card .blog-body {
    padding: 20px 20px 24px;
}

.blog-card .blog-meta-sm {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #a59db3;
    margin-bottom: 8px;
}

.blog-card .blog-meta-sm .blog-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card .blog-meta-sm .blog-read-time {
    position: relative;
    padding-left: 10px;
}

.blog-card .blog-meta-sm .blog-read-time::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d5cee3;
}

.blog-card .blog-title-sm {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e1a2b;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .blog-excerpt-sm {
    font-size: 14px;
    color: #5e576d;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .blog-link {
    color: #c749d7;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 0.3s;
}

.blog-card .blog-link i {
    transition: 0.3s;
    font-size: 14px;
}

.blog-card .blog-link:hover {
    color: #6339e6;
}

.blog-card .blog-link:hover i {
    transform: translateX(6px);
}

/* ----- Newsletter Section ----- */
.newsletter-section {
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 28px;
    padding: 48px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '🐾';
    position: absolute;
    font-size: 120px;
    right: -20px;
    bottom: -20px;
    opacity: 0.06;
    transform: rotate(-10deg);
}

.newsletter-section .newsletter-icon {
    width: 64px;
    height: 64px;
    background: rgba(125, 76, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #c749d7;
    margin: 0 auto 16px;
}

.newsletter-section h3 {
    font-weight: 700;
    color: #1e1a2b;
}

.newsletter-section p {
    color: #5e576d;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-section .input-group {
    max-width: 480px;
    margin: 0 auto;
    background: white;
    border-radius: 60px;
    padding: 4px;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.06);
}

.newsletter-section .input-group input {
    border: none;
    padding: 12px 20px;
    border-radius: 60px;
    font-size: 15px;
    background: transparent;
}

.newsletter-section .input-group input:focus {
    outline: none;
    box-shadow: none;
}

.newsletter-section .input-group .btn-subscribe {
    background: #c749d7;
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
}

.newsletter-section .input-group .btn-subscribe:hover {
    background: #6339e6;
    transform: scale(1.02);
}

/* ----- No Results ----- */
.no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.no-results.show {
    display: block;
}

.no-results i {
    font-size: 64px;
    color: #d5cee3;
    margin-bottom: 16px;
}

.no-results h4 {
    color: #1e1a2b;
    font-weight: 700;
}

.no-results p {
    color: #a59db3;
}

/* ----- Blog Grid Animation ----- */
.blog-item {
    transition: all 0.5s ease;
}

.blog-item.hide {
    display: none;
}

.blog-item.show {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .blogs-page {
        padding: 30px 0 50px;
    }

    .blogs-page .display-4 {
        font-size: 2.5rem;
    }

    .featured-post .featured-body {
        padding: 20px 24px 24px;
    }

    .featured-post .blog-title {
        font-size: 1.3rem;
    }

    .newsletter-section {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .blogs-page .display-4 {
        font-size: 2rem;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .featured-post .blog-title {
        font-size: 1.1rem;
    }

    .featured-post .blog-excerpt {
        font-size: 0.9rem;
    }

    .blog-card .blog-body {
        padding: 16px 16px 20px;
    }

    .blog-card .blog-title-sm {
        font-size: 1rem;
    }

    .blog-card .blog-excerpt-sm {
        font-size: 13px;
    }

    .newsletter-section {
        padding: 24px 16px;
    }

    .newsletter-section .input-group {
        flex-direction: column;
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .newsletter-section .input-group input {
        border-radius: 60px;
        background: white;
        padding: 14px 20px;
        margin-bottom: 10px;
        border: 1px solid rgba(125, 76, 255, 0.10);
    }

    .newsletter-section .input-group .btn-subscribe {
        width: 100%;
        border-radius: 60px;
        padding: 14px;
    }
}

@media (max-width: 576px) {
    .blogs-page {
        padding: 20px 0 40px;
    }

    .blogs-page .display-4 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .category-wrapper {
        gap: 6px;
    }

    .category-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .category-btn i {
        margin-right: 4px;
    }

    .featured-post .featured-body {
        padding: 16px;
    }

    .featured-post .blog-meta {
        font-size: 12px;
        gap: 8px;
    }

    .featured-post .blog-title {
        font-size: 1rem;
    }

    .featured-post .blog-author img {
        width: 36px;
        height: 36px;
    }

    .btn-read-more {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .blog-card .blog-thumb-wrapper {
        aspect-ratio: 4/3;
    }

    .newsletter-section::before {
        font-size: 80px;
    }
}

/* ----- Contact Page ----- */
.contact-page {
    background: linear-gradient(180deg, #faf9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    padding: 40px 0 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-page.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.contact-page::before,
.contact-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.contact-page::before {
    width: 600px;
    height: 600px;
    background: rgba(125, 76, 255, 0.05);
    top: -250px;
    right: -250px;
}

.contact-page::after {
    width: 500px;
    height: 500px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -200px;
    left: -200px;
}

.contact-page .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #c749d7;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    border: none;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #1e1a2b;
    position: relative;
    display: inline-block;
}

.doodle-left,
.doodle-right {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}

@media (max-width: 576px) {

    .doodle-left,
    .doodle-right {
        display: none;
    }
}

.text-primary {
    color: #c749d7 !important;
}

/* ----- Contact Info Cards ----- */
.contact-info-card {
    background: white;
    padding: 24px 28px;
    border-radius: 20px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 76, 255, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.08);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-card .info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #c749d7;
    transition: 0.3s;
}

.contact-info-card:hover .info-icon {
    background: #c749d7;
    color: white;
    transform: scale(1.05) rotate(-4deg);
}

.contact-info-card .info-title {
    font-weight: 600;
    font-size: 15px;
    color: #1e1a2b;
    margin-bottom: 2px;
}

.contact-info-card .info-detail {
    font-size: 14px;
    color: #5e576d;
    margin-bottom: 0;
}

/* ----- Contact Form ----- */
.contact-form-wrapper {
    background: white;
    border-radius: 28px;
    padding: 40px 44px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '🐾';
    position: absolute;
    font-size: 80px;
    right: -10px;
    bottom: -10px;
    opacity: 0.04;
    transform: rotate(-10deg);
}

.contact-form-wrapper .form-label {
    font-weight: 600;
    font-size: 14px;
    color: #1e1a2b;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border: 2px solid #e8e4f0;
    border-radius: 14px;
    padding: 12px 18px;
    font-size: 15px;
    transition: 0.3s;
    background: #faf9fc;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: #c749d7;
    box-shadow: 0 0 0 4px rgba(125, 76, 255, 0.08);
    background: white;
}

.contact-form-wrapper .form-control::placeholder {
    color: #b5b0c0;
}

.contact-form-wrapper .input-group-icon {
    position: relative;
}

.contact-form-wrapper .input-group-icon .form-control {
    padding-left: 48px;
}

.contact-form-wrapper .input-group-icon .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #c749d7;
    font-size: 18px;
    z-index: 2;
}

.btn-submit-contact {
    background: #c749d7;
    border: none;
    color: white;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
    width: 100%;
}

.btn-submit-contact:hover {
    background: #6339e6;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(125, 76, 255, 0.35);
    color: white;
}

/* ----- Map Section ----- */
.map-wrapper {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(125, 76, 255, 0.06);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    height: 300px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ----- Pet Decorations (Floating) ----- */
.pet-deco-contact {
    position: absolute;
    pointer-events: none;
    animation: floatContact 4s ease-in-out infinite;
}

.pet-deco-contact i {
    font-size: 28px;
    color: #c749d7;
    opacity: 0.5;
    filter: drop-shadow(0 4px 12px rgba(125, 76, 255, 0.10));
}

.deco-c-paw-1 {
    top: 5%;
    left: -4%;
    animation-delay: 0s;
}

.deco-c-paw-1 i {
    font-size: 32px;
    opacity: 0.3;
}

.deco-c-paw-2 {
    bottom: 15%;
    right: -4%;
    animation-delay: 1.5s;
}

.deco-c-paw-2 i {
    font-size: 28px;
    opacity: 0.25;
}

.deco-c-bone {
    top: 20%;
    right: -3%;
    animation-delay: 2.5s;
}

.deco-c-bone i {
    font-size: 30px;
    opacity: 0.2;
    color: #e8a87c;
}

.deco-c-heart {
    bottom: 25%;
    left: -3%;
    animation-delay: 1s;
}

.deco-c-heart i {
    font-size: 26px;
    opacity: 0.3;
    color: #ff6b6b;
}

.deco-c-dog {
    top: 40%;
    right: -2%;
    font-size: 36px;
    animation-delay: 0.5s;
    opacity: 0.15;
}

.deco-c-cat {
    bottom: 40%;
    left: -2%;
    font-size: 32px;
    animation-delay: 2s;
    opacity: 0.15;
}

.deco-c-circle-1 {
    width: 20px;
    height: 20px;
    background: rgba(125, 76, 255, 0.05);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0.3s;
    animation: floatContact 5s ease-in-out infinite;
}

.deco-c-circle-2 {
    width: 14px;
    height: 14px;
    background: rgba(125, 76, 255, 0.04);
    border-radius: 50%;
    bottom: 20%;
    right: 10%;
    animation-delay: 1.8s;
    animation: floatContact 4.5s ease-in-out infinite;
}

@keyframes floatContact {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-16px) rotate(6deg) scale(1.05);
    }
}

/* ----- Success Message ----- */
.success-message {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(46, 213, 115, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(46, 213, 115, 0.20);
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

.success-message i {
    font-size: 48px;
    color: #2ed573;
    margin-bottom: 12px;
}

.success-message h5 {
    color: #1e1a2b;
    font-weight: 700;
}

.success-message p {
    color: #5e576d;
    margin-bottom: 0;
}

/* ----- Social Links ----- */
.social-links-contact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link-contact {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f4f0ff;
    color: #c749d7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
    text-decoration: none;
}

.social-link-contact:hover {
    background: #c749d7;
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(125, 76, 255, 0.25);
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .contact-page {
        padding: 30px 0 50px;
    }

    .contact-page .display-4 {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 28px 24px;
    }

    .pet-deco-contact {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-page .display-4 {
        font-size: 2rem;
    }

    .contact-info-card {
        padding: 18px 20px;
    }

    .contact-info-card .info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
    }

    .contact-form-wrapper {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .contact-form-wrapper .form-control,
    .contact-form-wrapper .form-select {
        font-size: 14px;
        padding: 10px 14px;
    }

    .contact-form-wrapper .input-group-icon .form-control {
        padding-left: 42px;
    }

    .contact-form-wrapper .input-group-icon .input-icon {
        left: 14px;
        font-size: 16px;
    }

    .btn-submit-contact {
        font-size: 15px;
        padding: 12px 28px;
    }

    .map-wrapper {
        height: 220px;
    }

    .social-links-contact {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 20px 0 40px;
    }

    .contact-page .display-4 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-info-card {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .contact-info-card .info-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 16px;
    }

    .contact-info-card .info-title {
        font-size: 13px;
    }

    .contact-info-card .info-detail {
        font-size: 12px;
    }

    .contact-form-wrapper {
        padding: 16px 12px;
        border-radius: 16px;
    }

    .contact-form-wrapper .form-control,
    .contact-form-wrapper .form-select {
        font-size: 13px;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .contact-form-wrapper .input-group-icon .form-control {
        padding-left: 38px;
    }

    .contact-form-wrapper .input-group-icon .input-icon {
        left: 12px;
        font-size: 14px;
    }

    .btn-submit-contact {
        font-size: 14px;
        padding: 12px 20px;
    }

    .map-wrapper {
        height: 180px;
        border-radius: 16px;
    }

    .social-link-contact {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}