/* ----- Grooming Page ----- */
.grooming-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;
}

.grooming-page.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.grooming-page::before,
.grooming-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.grooming-page::before {
    width: 500px;
    height: 500px;
    background: rgba(125, 76, 255, 0.05);
    top: -200px;
    right: -200px;
}

.grooming-page::after {
    width: 400px;
    height: 400px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -150px;
    left: -150px;
}

.grooming-page .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #7d4cff;
    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: #7d4cff !important;
}

/* ----- Hero Section ----- */
.grooming-hero {
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 76, 255, 0.06);
}

.grooming-hero::before {
    content: '✂️';
    position: absolute;
    font-size: 180px;
    right: -20px;
    bottom: -40px;
    opacity: 0.06;
    transform: rotate(-10deg);
}

.grooming-hero .hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(125, 76, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #7d4cff;
    margin-bottom: 16px;
}

.grooming-hero h1 {
    font-weight: 800;
    color: #1e1a2b;
}

.grooming-hero p {
    color: #5e576d;
    max-width: 480px;
}

.btn-grooming-hero {
    background: #7d4cff;
    border: none;
    color: white;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
    text-decoration: none;
    display: inline-block;
}

.btn-grooming-hero:hover {
    background: #6339e6;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(125, 76, 255, 0.35);
    color: white;
}

/* ----- Service Cards ----- */
.grooming-service-card {
    background: white;
    border-radius: 24px;
    padding: 28px 24px;
    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;
    text-align: center;
}

.grooming-service-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;
}

.grooming-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 16px 48px rgba(125, 76, 255, 0.08);
}

.grooming-service-card:hover::before {
    opacity: 1;
}

.grooming-service-card .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #7d4cff;
    margin: 0 auto 16px;
    transition: 0.3s;
}

.grooming-service-card:hover .service-icon {
    background: #7d4cff;
    color: white;
    transform: scale(1.05) rotate(-4deg);
}

.grooming-service-card .service-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1e1a2b;
    margin-bottom: 8px;
}

.grooming-service-card .service-desc {
    font-size: 14px;
    color: #5e576d;
    line-height: 1.6;
    margin-bottom: 12px;
}

.grooming-service-card .service-price {
    font-weight: 700;
    font-size: 1.4rem;
    color: #7d4cff;
    margin-bottom: 12px;
}

.grooming-service-card .service-price small {
    font-size: 14px;
    font-weight: 400;
    color: #a59db3;
}

.grooming-service-card .btn-book {
    background: #7d4cff;
    border: none;
    color: white;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.grooming-service-card .btn-book:hover {
    background: #6339e6;
    transform: scale(1.04);
    color: white;
}

.grooming-service-card .badge-popular {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff6b6b;
    color: white;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
}

/* ----- Features Section ----- */
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateX(6px);
    border-color: rgba(125, 76, 255, 0.12);
}

.feature-item .feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #f4f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d4cff;
    font-size: 18px;
}

.feature-item .feature-text {
    font-weight: 500;
    color: #1e1a2b;
    font-size: 14px;
}

/* ----- Gallery Section ----- */
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(30, 26, 43, 0.60) 0%, transparent 60%);
    opacity: 0;
    transition: 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* ----- CTA Section ----- */
.cta-grooming {
    background: linear-gradient(135deg, #7d4cff 0%, #6339e6 100%);
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-grooming::before {
    content: '🐾';
    position: absolute;
    font-size: 160px;
    right: -20px;
    bottom: -40px;
    opacity: 0.08;
}

.cta-grooming h2 {
    font-weight: 800;
}

.cta-grooming p {
    opacity: 0.85;
    max-width: 480px;
    margin: 0 auto 24px;
}

.btn-cta-white {
    background: white;
    border: none;
    color: #7d4cff;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    color: #6339e6;
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .grooming-page {
        padding: 30px 0 50px;
    }

    .grooming-hero {
        padding: 32px 24px;
    }

    .grooming-hero::before {
        font-size: 120px;
    }

    .grooming-hero h1 {
        font-size: 2.2rem;
    }

    .grooming-service-card {
        padding: 20px 16px;
    }
}

@media (max-width: 768px) {
    .grooming-hero {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .grooming-hero h1 {
        font-size: 1.8rem;
    }

    .grooming-hero .hero-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .grooming-service-card .service-price {
        font-size: 1.2rem;
    }

    .cta-grooming {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .cta-grooming h2 {
        font-size: 1.6rem;
    }

    .feature-item {
        padding: 12px 16px;
    }
}

@media (max-width: 576px) {
    .grooming-page {
        padding: 20px 0 40px;
    }

    .grooming-hero h1 {
        font-size: 1.5rem;
    }

    .grooming-hero p {
        font-size: 0.95rem;
    }

    .btn-grooming-hero {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }

    .grooming-service-card {
        padding: 16px 12px;
        border-radius: 18px;
    }

    .grooming-service-card .service-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .grooming-service-card .service-title {
        font-size: 1rem;
    }

    .grooming-service-card .service-price {
        font-size: 1.1rem;
    }

    .grooming-service-card .btn-book {
        width: 100%;
        text-align: center;
    }

    .grooming-service-card .badge-popular {
        font-size: 10px;
        padding: 3px 10px;
    }

    .cta-grooming h2 {
        font-size: 1.3rem;
    }

    .btn-cta-white {
        width: 100%;
        text-align: center;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }
}


/* ----- Boarding Page ----- */
.boarding-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;
}

.boarding-page.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.boarding-page::before,
.boarding-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.boarding-page::before {
    width: 500px;
    height: 500px;
    background: rgba(125, 76, 255, 0.05);
    top: -200px;
    right: -200px;
}

.boarding-page::after {
    width: 400px;
    height: 400px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -150px;
    left: -150px;
}

.boarding-page .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #7d4cff;
    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: #7d4cff !important;
}

/* ----- Hero Section ----- */
.boarding-hero {
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 76, 255, 0.06);
}

.boarding-hero::before {
    content: '🏠';
    position: absolute;
    font-size: 180px;
    right: -20px;
    bottom: -40px;
    opacity: 0.06;
    transform: rotate(-10deg);
}

.boarding-hero .hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(125, 76, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #7d4cff;
    margin-bottom: 16px;
}

.boarding-hero h1 {
    font-weight: 800;
    color: #1e1a2b;
}

.boarding-hero p {
    color: #5e576d;
    max-width: 480px;
}

.btn-boarding-hero {
    background: #7d4cff;
    border: none;
    color: white;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
    text-decoration: none;
    display: inline-block;
}

.btn-boarding-hero:hover {
    background: #6339e6;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(125, 76, 255, 0.35);
    color: white;
}

/* ----- Boarding Cards ----- */
.boarding-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    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%;
}

.boarding-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 16px 48px rgba(125, 76, 255, 0.08);
}

.boarding-card .card-thumb {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.boarding-card .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.boarding-card:hover .card-thumb img {
    transform: scale(1.05);
}

.boarding-card .card-thumb .badge-type {
    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: #7d4cff;
    border: 1px solid rgba(125, 76, 255, 0.08);
}

.boarding-card .card-thumb .badge-popular {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff6b6b;
    color: white;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
}

.boarding-card .card-body-custom {
    padding: 20px 20px 24px;
}

.boarding-card .card-title-custom {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1e1a2b;
    margin-bottom: 4px;
}

.boarding-card .card-subtitle {
    font-size: 13px;
    color: #a59db3;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.boarding-card .card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.boarding-card .card-features .feature-tag {
    background: #f4f0ff;
    color: #7d4cff;
    padding: 2px 12px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 500;
}

.boarding-card .card-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;
}

.boarding-card .card-price {
    font-weight: 700;
    font-size: 1.3rem;
    color: #7d4cff;
    margin-bottom: 12px;
}

.boarding-card .card-price small {
    font-size: 14px;
    font-weight: 400;
    color: #a59db3;
}

.boarding-card .btn-book {
    background: #7d4cff;
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.boarding-card .btn-book:hover {
    background: #6339e6;
    transform: scale(1.04);
    color: white;
}

/* ----- Amenities Section ----- */
.amenity-item {
    text-align: center;
    padding: 20px 16px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.4s;
    height: 100%;
}

.amenity-item:hover {
    transform: translateY(-6px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.08);
}

.amenity-item .amenity-icon {
    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: #7d4cff;
    margin: 0 auto 12px;
    transition: 0.3s;
}

.amenity-item:hover .amenity-icon {
    background: #7d4cff;
    color: white;
    transform: scale(1.05) rotate(-4deg);
}

.amenity-item .amenity-title {
    font-weight: 600;
    font-size: 14px;
    color: #1e1a2b;
    margin-bottom: 4px;
}

.amenity-item .amenity-desc {
    font-size: 13px;
    color: #a59db3;
    margin-bottom: 0;
}

/* ----- Testimonial Section ----- */
.testimonial-card-boarding {
    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: 0.3s;
    height: 100%;
}

.testimonial-card-boarding:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.08);
}

.testimonial-card-boarding .testimonial-text {
    font-size: 15px;
    color: #5e576d;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-card-boarding .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card-boarding .testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(125, 76, 255, 0.10);
}

.testimonial-card-boarding .testimonial-author .author-name {
    font-weight: 600;
    font-size: 14px;
    color: #1e1a2b;
}

.testimonial-card-boarding .testimonial-author .author-role {
    font-size: 13px;
    color: #a59db3;
}

/* ----- CTA Section ----- */
.cta-boarding {
    background: linear-gradient(135deg, #7d4cff 0%, #6339e6 100%);
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-boarding::before {
    content: '🐾';
    position: absolute;
    font-size: 160px;
    right: -20px;
    bottom: -40px;
    opacity: 0.08;
}

.cta-boarding h2 {
    font-weight: 800;
}

.cta-boarding p {
    opacity: 0.85;
    max-width: 480px;
    margin: 0 auto 24px;
}

.btn-cta-white {
    background: white;
    border: none;
    color: #7d4cff;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    color: #6339e6;
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .boarding-page {
        padding: 30px 0 50px;
    }

    .boarding-hero {
        padding: 32px 24px;
    }

    .boarding-hero::before {
        font-size: 120px;
    }

    .boarding-hero h1 {
        font-size: 2.2rem;
    }

    .boarding-card .card-thumb {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .boarding-hero {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .boarding-hero h1 {
        font-size: 1.8rem;
    }

    .boarding-hero .hero-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .boarding-card .card-thumb {
        height: 160px;
    }

    .boarding-card .card-price {
        font-size: 1.1rem;
    }

    .cta-boarding {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .cta-boarding h2 {
        font-size: 1.6rem;
    }

    .amenity-item {
        padding: 16px 12px;
    }
}

@media (max-width: 576px) {
    .boarding-page {
        padding: 20px 0 40px;
    }

    .boarding-hero h1 {
        font-size: 1.5rem;
    }

    .boarding-hero p {
        font-size: 0.95rem;
    }

    .btn-boarding-hero {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }

    .boarding-card .card-thumb {
        height: 140px;
    }

    .boarding-card .card-body-custom {
        padding: 16px;
    }

    .boarding-card .card-title-custom {
        font-size: 1rem;
    }

    .boarding-card .card-description {
        font-size: 13px;
    }

    .boarding-card .btn-book {
        width: 100%;
        text-align: center;
    }

    .boarding-card .card-thumb .badge-popular {
        font-size: 10px;
        padding: 3px 10px;
    }

    .cta-boarding h2 {
        font-size: 1.3rem;
    }

    .btn-cta-white {
        width: 100%;
        text-align: center;
    }

    .testimonial-card-boarding {
        padding: 18px 16px;
    }
}

/* ----- Sitting Page ----- */
.sitting-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;
}

.sitting-page.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.sitting-page::before,
.sitting-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.sitting-page::before {
    width: 600px;
    height: 600px;
    background: rgba(125, 76, 255, 0.05);
    top: -250px;
    right: -200px;
}

.sitting-page::after {
    width: 500px;
    height: 500px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -200px;
    left: -200px;
}

.sitting-page .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #7d4cff;
    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: #7d4cff !important;
}

/* ----- Hero Section ----- */
.sitting-hero {
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 76, 255, 0.06);
}

.sitting-hero::before {
    content: '🐾';
    position: absolute;
    font-size: 200px;
    right: -30px;
    bottom: -50px;
    opacity: 0.06;
    transform: rotate(-10deg);
}

.sitting-hero .hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(125, 76, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #7d4cff;
    margin-bottom: 16px;
    animation: pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.sitting-hero h1 {
    font-weight: 800;
    color: #1e1a2b;
}

.sitting-hero .hero-highlight {
    background: linear-gradient(135deg, #7d4cff, #6339e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sitting-hero p {
    color: #5e576d;
    max-width: 480px;
}

.btn-sitting-hero {
    background: #7d4cff;
    border: none;
    color: white;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-sitting-hero::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: 0.6s;
}

.btn-sitting-hero:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-sitting-hero:hover {
    background: #6339e6;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(125, 76, 255, 0.35);
    color: white;
}

/* ----- Sitting Cards ----- */
.sitting-card {
    background: white;
    border-radius: 24px;
    padding: 28px 24px;
    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;
    text-align: center;
}

.sitting-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;
}

.sitting-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(125, 76, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: 0.6s;
}

.sitting-card:hover {
    transform: translateY(-10px);
    border-color: rgba(125, 76, 255, 0.15);
    box-shadow: 0 20px 60px rgba(125, 76, 255, 0.10);
}

.sitting-card:hover::before {
    opacity: 1;
}

.sitting-card:hover::after {
    transform: scale(1.5);
}

.sitting-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #7d4cff;
    margin: 0 auto 16px;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.sitting-card:hover .card-icon {
    background: linear-gradient(135deg, #7d4cff 0%, #6339e6 100%);
    color: white;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
}

.sitting-card .card-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1e1a2b;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.sitting-card .card-desc {
    font-size: 14px;
    color: #5e576d;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.sitting-card .card-price {
    font-weight: 700;
    font-size: 1.5rem;
    color: #7d4cff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.sitting-card .card-price small {
    font-size: 14px;
    font-weight: 400;
    color: #a59db3;
}

.sitting-card .card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.sitting-card .card-features .feature-tag {
    background: #f4f0ff;
    color: #7d4cff;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 500;
    transition: 0.3s;
}

.sitting-card:hover .feature-tag {
    background: #e8e0ff;
}

.sitting-card .btn-book {
    background: #7d4cff;
    border: none;
    color: white;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.sitting-card .btn-book::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.sitting-card .btn-book:hover::after {
    transform: translateX(100%);
}

.sitting-card .btn-book:hover {
    background: #6339e6;
    transform: scale(1.04);
    color: white;
}

.sitting-card .badge-popular {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.sitting-card .card-graphic {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 80px;
    opacity: 0.03;
    pointer-events: none;
    transform: rotate(10deg);
}

/* ----- Why Choose Section ----- */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 76, 255, 0.02) 0%, transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.why-item:hover {
    transform: translateX(8px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 8px 24px rgba(125, 76, 255, 0.06);
}

.why-item:hover::before {
    opacity: 1;
}

.why-item .why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d4cff;
    font-size: 20px;
    transition: 0.3s;
}

.why-item:hover .why-icon {
    background: #7d4cff;
    color: white;
    transform: scale(1.05) rotate(-4deg);
}

.why-item .why-text {
    font-weight: 600;
    color: #1e1a2b;
    font-size: 14px;
    margin-bottom: 2px;
}

.why-item .why-desc {
    font-size: 13px;
    color: #a59db3;
    margin-bottom: 0;
}

/* ----- How It Works ----- */
.step-item {
    text-align: center;
    padding: 24px 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 76, 255, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.step-item:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 16px 48px rgba(125, 76, 255, 0.08);
}

.step-item:hover::before {
    opacity: 1;
}

.step-item .step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #7d4cff 0%, #6339e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 14px;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.20);
    transition: 0.3s;
}

.step-item:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.30);
}

.step-item .step-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.step-item .step-title {
    font-weight: 600;
    font-size: 16px;
    color: #1e1a2b;
    margin-bottom: 4px;
}

.step-item .step-desc {
    font-size: 13px;
    color: #a59db3;
    margin-bottom: 0;
}

/* ----- Testimonial Section ----- */
.testimonial-sitting {
    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: 0.3s;
    height: 100%;
    position: relative;
}

.testimonial-sitting::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(125, 76, 255, 0.06);
    font-family: Georgia, serif;
}

.testimonial-sitting:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.08);
    border-color: rgba(125, 76, 255, 0.10);
}

.testimonial-sitting .testimonial-text {
    font-size: 15px;
    color: #5e576d;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-sitting .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.testimonial-sitting .testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(125, 76, 255, 0.10);
    transition: 0.3s;
}

.testimonial-sitting:hover .testimonial-author img {
    border-color: #7d4cff;
}

.testimonial-sitting .testimonial-author .author-name {
    font-weight: 600;
    font-size: 14px;
    color: #1e1a2b;
}

.testimonial-sitting .testimonial-author .author-role {
    font-size: 13px;
    color: #a59db3;
}

.testimonial-sitting .testimonial-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* ----- CTA Section ----- */
.cta-sitting {
    background: linear-gradient(135deg, #7d4cff 0%, #4a1fa6 100%);
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-sitting::before {
    content: '🐾';
    position: absolute;
    font-size: 200px;
    right: -30px;
    bottom: -50px;
    opacity: 0.06;
}

.cta-sitting::after {
    content: '❤️';
    position: absolute;
    font-size: 100px;
    left: -20px;
    top: -30px;
    opacity: 0.04;
}

.cta-sitting .cta-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    animation: pulseIcon 3s ease-in-out infinite;
}

.cta-sitting h2 {
    font-weight: 800;
    font-size: 2.2rem;
}

.cta-sitting p {
    opacity: 0.85;
    max-width: 480px;
    margin: 0 auto 24px;
}

.btn-cta-white {
    background: white;
    border: none;
    color: #7d4cff;
    padding: 14px 40px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-cta-white::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent, rgba(125, 76, 255, 0.05), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: 0.6s;
}

.btn-cta-white:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-cta-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.20);
    color: #6339e6;
}

/* ----- Floating Decorations ----- */
.float-deco {
    position: absolute;
    pointer-events: none;
    animation: floatDeco 5s ease-in-out infinite;
}

.float-deco-1 {
    top: 10%;
    left: 5%;
    font-size: 40px;
    opacity: 0.06;
    animation-delay: 0s;
}

.float-deco-2 {
    bottom: 15%;
    right: 8%;
    font-size: 30px;
    opacity: 0.05;
    animation-delay: 1.5s;
}

@keyframes floatDeco {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .sitting-page {
        padding: 30px 0 50px;
    }

    .sitting-hero {
        padding: 32px 24px;
    }

    .sitting-hero::before {
        font-size: 140px;
    }

    .sitting-hero h1 {
        font-size: 2.2rem;
    }

    .sitting-card {
        padding: 20px 16px;
    }

    .cta-sitting h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .sitting-hero {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .sitting-hero h1 {
        font-size: 1.8rem;
    }

    .sitting-hero .hero-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .sitting-card .card-price {
        font-size: 1.2rem;
    }

    .cta-sitting {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .cta-sitting h2 {
        font-size: 1.5rem;
    }

    .why-item {
        padding: 14px 16px;
    }

    .step-item {
        padding: 16px 12px;
    }

    .float-deco {
        display: none;
    }
}

@media (max-width: 576px) {
    .sitting-page {
        padding: 20px 0 40px;
    }

    .sitting-hero h1 {
        font-size: 1.5rem;
    }

    .sitting-hero p {
        font-size: 0.95rem;
    }

    .btn-sitting-hero {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }

    .sitting-card {
        padding: 16px 12px;
        border-radius: 18px;
    }

    .sitting-card .card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .sitting-card .card-title {
        font-size: 1rem;
    }

    .sitting-card .card-price {
        font-size: 1.1rem;
    }

    .sitting-card .btn-book {
        width: 100%;
        text-align: center;
    }

    .sitting-card .badge-popular {
        font-size: 10px;
        padding: 3px 10px;
    }

    .sitting-card .card-graphic {
        font-size: 50px;
    }

    .cta-sitting h2 {
        font-size: 1.3rem;
    }

    .btn-cta-white {
        width: 100%;
        text-align: center;
    }

    .testimonial-sitting {
        padding: 18px 16px;
    }

    .why-item {
        padding: 12px 14px;
    }

    .step-item .step-number {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}


/* ----- Walking Page ----- */
.walking-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;
}

.walking-page.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.walking-page::before,
.walking-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.walking-page::before {
    width: 600px;
    height: 600px;
    background: rgba(125, 76, 255, 0.05);
    top: -250px;
    right: -200px;
}

.walking-page::after {
    width: 500px;
    height: 500px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -200px;
    left: -200px;
}

.walking-page .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #7d4cff;
    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: #7d4cff !important;
}

/* ----- Hero Section ----- */
.walking-hero {
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 76, 255, 0.06);
}

.walking-hero::before {
    content: '🚶';
    position: absolute;
    font-size: 200px;
    right: -30px;
    bottom: -50px;
    opacity: 0.06;
    transform: rotate(-10deg);
}

.walking-hero .hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(125, 76, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #7d4cff;
    margin-bottom: 16px;
    animation: pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.walking-hero h1 {
    font-weight: 800;
    color: #1e1a2b;
}

.walking-hero .hero-highlight {
    background: linear-gradient(135deg, #7d4cff, #6339e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.walking-hero p {
    color: #5e576d;
    max-width: 480px;
}

.btn-walking-hero {
    background: #7d4cff;
    border: none;
    color: white;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-walking-hero::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: 0.6s;
}

.btn-walking-hero:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-walking-hero:hover {
    background: #6339e6;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(125, 76, 255, 0.35);
    color: white;
}

/* ----- Walking Cards ----- */
.walking-card {
    background: white;
    border-radius: 24px;
    padding: 28px 24px;
    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;
    text-align: center;
}

.walking-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;
}

.walking-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(125, 76, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: 0.6s;
}

.walking-card:hover {
    transform: translateY(-10px);
    border-color: rgba(125, 76, 255, 0.15);
    box-shadow: 0 20px 60px rgba(125, 76, 255, 0.10);
}

.walking-card:hover::before {
    opacity: 1;
}

.walking-card:hover::after {
    transform: scale(1.5);
}

.walking-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #7d4cff;
    margin: 0 auto 16px;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.walking-card:hover .card-icon {
    background: linear-gradient(135deg, #7d4cff 0%, #6339e6 100%);
    color: white;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
}

.walking-card .card-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1e1a2b;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.walking-card .card-desc {
    font-size: 14px;
    color: #5e576d;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.walking-card .card-price {
    font-weight: 700;
    font-size: 1.5rem;
    color: #7d4cff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.walking-card .card-price small {
    font-size: 14px;
    font-weight: 400;
    color: #a59db3;
}

.walking-card .card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.walking-card .card-features .feature-tag {
    background: #f4f0ff;
    color: #7d4cff;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 500;
    transition: 0.3s;
}

.walking-card:hover .feature-tag {
    background: #e8e0ff;
}

.walking-card .btn-book {
    background: #7d4cff;
    border: none;
    color: white;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.walking-card .btn-book::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.walking-card .btn-book:hover::after {
    transform: translateX(100%);
}

.walking-card .btn-book:hover {
    background: #6339e6;
    transform: scale(1.04);
    color: white;
}

.walking-card .badge-popular {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.walking-card .card-graphic {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 80px;
    opacity: 0.03;
    pointer-events: none;
    transform: rotate(10deg);
}

/* ----- Why Choose Section ----- */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 76, 255, 0.02) 0%, transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.why-item:hover {
    transform: translateX(8px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 8px 24px rgba(125, 76, 255, 0.06);
}

.why-item:hover::before {
    opacity: 1;
}

.why-item .why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d4cff;
    font-size: 20px;
    transition: 0.3s;
}

.why-item:hover .why-icon {
    background: #7d4cff;
    color: white;
    transform: scale(1.05) rotate(-4deg);
}

.why-item .why-text {
    font-weight: 600;
    color: #1e1a2b;
    font-size: 14px;
    margin-bottom: 2px;
}

.why-item .why-desc {
    font-size: 13px;
    color: #a59db3;
    margin-bottom: 0;
}

/* ----- How It Works ----- */
.step-item {
    text-align: center;
    padding: 24px 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 76, 255, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.step-item:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 16px 48px rgba(125, 76, 255, 0.08);
}

.step-item:hover::before {
    opacity: 1;
}

.step-item .step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #7d4cff 0%, #6339e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 14px;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.20);
    transition: 0.3s;
}

.step-item:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.30);
}

.step-item .step-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.step-item .step-title {
    font-weight: 600;
    font-size: 16px;
    color: #1e1a2b;
    margin-bottom: 4px;
}

.step-item .step-desc {
    font-size: 13px;
    color: #a59db3;
    margin-bottom: 0;
}

/* ----- Testimonial Section ----- */
.testimonial-walking {
    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: 0.3s;
    height: 100%;
    position: relative;
}

.testimonial-walking::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(125, 76, 255, 0.06);
    font-family: Georgia, serif;
}

.testimonial-walking:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.08);
    border-color: rgba(125, 76, 255, 0.10);
}

.testimonial-walking .testimonial-text {
    font-size: 15px;
    color: #5e576d;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-walking .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.testimonial-walking .testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(125, 76, 255, 0.10);
    transition: 0.3s;
}

.testimonial-walking:hover .testimonial-author img {
    border-color: #7d4cff;
}

.testimonial-walking .testimonial-author .author-name {
    font-weight: 600;
    font-size: 14px;
    color: #1e1a2b;
}

.testimonial-walking .testimonial-author .author-role {
    font-size: 13px;
    color: #a59db3;
}

.testimonial-walking .testimonial-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* ----- CTA Section ----- */
.cta-walking {
    background: linear-gradient(135deg, #7d4cff 0%, #4a1fa6 100%);
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-walking::before {
    content: '🐾';
    position: absolute;
    font-size: 200px;
    right: -30px;
    bottom: -50px;
    opacity: 0.06;
}

.cta-walking::after {
    content: '🚶';
    position: absolute;
    font-size: 100px;
    left: -20px;
    top: -30px;
    opacity: 0.04;
}

.cta-walking .cta-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    animation: pulseIcon 3s ease-in-out infinite;
}

.cta-walking h2 {
    font-weight: 800;
    font-size: 2.2rem;
}

.cta-walking p {
    opacity: 0.85;
    max-width: 480px;
    margin: 0 auto 24px;
}

.btn-cta-white {
    background: white;
    border: none;
    color: #7d4cff;
    padding: 14px 40px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-cta-white::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent, rgba(125, 76, 255, 0.05), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: 0.6s;
}

.btn-cta-white:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-cta-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.20);
    color: #6339e6;
}

/* ----- Floating Decorations ----- */
.float-deco {
    position: absolute;
    pointer-events: none;
    animation: floatDeco 5s ease-in-out infinite;
}

.float-deco-1 {
    top: 10%;
    left: 5%;
    font-size: 40px;
    opacity: 0.06;
    animation-delay: 0s;
}

.float-deco-2 {
    bottom: 15%;
    right: 8%;
    font-size: 30px;
    opacity: 0.05;
    animation-delay: 1.5s;
}

@keyframes floatDeco {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .walking-page {
        padding: 30px 0 50px;
    }

    .walking-hero {
        padding: 32px 24px;
    }

    .walking-hero::before {
        font-size: 140px;
    }

    .walking-hero h1 {
        font-size: 2.2rem;
    }

    .walking-card {
        padding: 20px 16px;
    }

    .cta-walking h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .walking-hero {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .walking-hero h1 {
        font-size: 1.8rem;
    }

    .walking-hero .hero-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .walking-card .card-price {
        font-size: 1.2rem;
    }

    .cta-walking {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .cta-walking h2 {
        font-size: 1.5rem;
    }

    .why-item {
        padding: 14px 16px;
    }

    .step-item {
        padding: 16px 12px;
    }

    .float-deco {
        display: none;
    }
}

@media (max-width: 576px) {
    .walking-page {
        padding: 20px 0 40px;
    }

    .walking-hero h1 {
        font-size: 1.5rem;
    }

    .walking-hero p {
        font-size: 0.95rem;
    }

    .btn-walking-hero {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }

    .walking-card {
        padding: 16px 12px;
        border-radius: 18px;
    }

    .walking-card .card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .walking-card .card-title {
        font-size: 1rem;
    }

    .walking-card .card-price {
        font-size: 1.1rem;
    }

    .walking-card .btn-book {
        width: 100%;
        text-align: center;
    }

    .walking-card .badge-popular {
        font-size: 10px;
        padding: 3px 10px;
    }

    .walking-card .card-graphic {
        font-size: 50px;
    }

    .cta-walking h2 {
        font-size: 1.3rem;
    }

    .btn-cta-white {
        width: 100%;
        text-align: center;
    }

    .testimonial-walking {
        padding: 18px 16px;
    }

    .why-item {
        padding: 12px 14px;
    }

    .step-item .step-number {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}


/* ----- Taxi Page ----- */
.taxi-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;
}

.taxi-page.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.taxi-page::before,
.taxi-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.taxi-page::before {
    width: 600px;
    height: 600px;
    background: rgba(125, 76, 255, 0.05);
    top: -250px;
    right: -200px;
}

.taxi-page::after {
    width: 500px;
    height: 500px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -200px;
    left: -200px;
}

.taxi-page .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #7d4cff;
    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: #7d4cff !important;
}

/* ----- Hero Section ----- */
.taxi-hero {
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 76, 255, 0.06);
}

.taxi-hero::before {
    content: '🚕';
    position: absolute;
    font-size: 200px;
    right: -30px;
    bottom: -50px;
    opacity: 0.06;
    transform: rotate(-10deg);
}

.taxi-hero .hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(125, 76, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #7d4cff;
    margin-bottom: 16px;
    animation: pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.taxi-hero h1 {
    font-weight: 800;
    color: #1e1a2b;
}

.taxi-hero .hero-highlight {
    background: linear-gradient(135deg, #7d4cff, #6339e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.taxi-hero p {
    color: #5e576d;
    max-width: 480px;
}

.btn-taxi-hero {
    background: #7d4cff;
    border: none;
    color: white;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-taxi-hero::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: 0.6s;
}

.btn-taxi-hero:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-taxi-hero:hover {
    background: #6339e6;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(125, 76, 255, 0.35);
    color: white;
}

/* ----- Taxi Cards ----- */
.taxi-card {
    background: white;
    border-radius: 24px;
    padding: 28px 24px;
    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;
    text-align: center;
}

.taxi-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;
}

.taxi-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(125, 76, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: 0.6s;
}

.taxi-card:hover {
    transform: translateY(-10px);
    border-color: rgba(125, 76, 255, 0.15);
    box-shadow: 0 20px 60px rgba(125, 76, 255, 0.10);
}

.taxi-card:hover::before {
    opacity: 1;
}

.taxi-card:hover::after {
    transform: scale(1.5);
}

.taxi-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #7d4cff;
    margin: 0 auto 16px;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.taxi-card:hover .card-icon {
    background: linear-gradient(135deg, #7d4cff 0%, #6339e6 100%);
    color: white;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
}

.taxi-card .card-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1e1a2b;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.taxi-card .card-desc {
    font-size: 14px;
    color: #5e576d;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.taxi-card .card-price {
    font-weight: 700;
    font-size: 1.5rem;
    color: #7d4cff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.taxi-card .card-price small {
    font-size: 14px;
    font-weight: 400;
    color: #a59db3;
}

.taxi-card .card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.taxi-card .card-features .feature-tag {
    background: #f4f0ff;
    color: #7d4cff;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 500;
    transition: 0.3s;
}

.taxi-card:hover .feature-tag {
    background: #e8e0ff;
}

.taxi-card .btn-book {
    background: #7d4cff;
    border: none;
    color: white;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.taxi-card .btn-book::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.taxi-card .btn-book:hover::after {
    transform: translateX(100%);
}

.taxi-card .btn-book:hover {
    background: #6339e6;
    transform: scale(1.04);
    color: white;
}

.taxi-card .badge-popular {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.taxi-card .card-graphic {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 80px;
    opacity: 0.03;
    pointer-events: none;
    transform: rotate(10deg);
}

/* ----- Why Choose Section ----- */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 76, 255, 0.02) 0%, transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.why-item:hover {
    transform: translateX(8px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 8px 24px rgba(125, 76, 255, 0.06);
}

.why-item:hover::before {
    opacity: 1;
}

.why-item .why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d4cff;
    font-size: 20px;
    transition: 0.3s;
}

.why-item:hover .why-icon {
    background: #7d4cff;
    color: white;
    transform: scale(1.05) rotate(-4deg);
}

.why-item .why-text {
    font-weight: 600;
    color: #1e1a2b;
    font-size: 14px;
    margin-bottom: 2px;
}

.why-item .why-desc {
    font-size: 13px;
    color: #a59db3;
    margin-bottom: 0;
}

/* ----- How It Works ----- */
.step-item {
    text-align: center;
    padding: 24px 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 76, 255, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.step-item:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 16px 48px rgba(125, 76, 255, 0.08);
}

.step-item:hover::before {
    opacity: 1;
}

.step-item .step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #7d4cff 0%, #6339e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 14px;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.20);
    transition: 0.3s;
}

.step-item:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.30);
}

.step-item .step-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.step-item .step-title {
    font-weight: 600;
    font-size: 16px;
    color: #1e1a2b;
    margin-bottom: 4px;
}

.step-item .step-desc {
    font-size: 13px;
    color: #a59db3;
    margin-bottom: 0;
}

/* ----- Testimonial Section ----- */
.testimonial-taxi {
    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: 0.3s;
    height: 100%;
    position: relative;
}

.testimonial-taxi::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(125, 76, 255, 0.06);
    font-family: Georgia, serif;
}

.testimonial-taxi:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.08);
    border-color: rgba(125, 76, 255, 0.10);
}

.testimonial-taxi .testimonial-text {
    font-size: 15px;
    color: #5e576d;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-taxi .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.testimonial-taxi .testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(125, 76, 255, 0.10);
    transition: 0.3s;
}

.testimonial-taxi:hover .testimonial-author img {
    border-color: #7d4cff;
}

.testimonial-taxi .testimonial-author .author-name {
    font-weight: 600;
    font-size: 14px;
    color: #1e1a2b;
}

.testimonial-taxi .testimonial-author .author-role {
    font-size: 13px;
    color: #a59db3;
}

.testimonial-taxi .testimonial-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* ----- CTA Section ----- */
.cta-taxi {
    background: linear-gradient(135deg, #7d4cff 0%, #4a1fa6 100%);
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-taxi::before {
    content: '🚕';
    position: absolute;
    font-size: 200px;
    right: -30px;
    bottom: -50px;
    opacity: 0.06;
}

.cta-taxi::after {
    content: '🐾';
    position: absolute;
    font-size: 100px;
    left: -20px;
    top: -30px;
    opacity: 0.04;
}

.cta-taxi .cta-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    animation: pulseIcon 3s ease-in-out infinite;
}

.cta-taxi h2 {
    font-weight: 800;
    font-size: 2.2rem;
}

.cta-taxi p {
    opacity: 0.85;
    max-width: 480px;
    margin: 0 auto 24px;
}

.btn-cta-white {
    background: white;
    border: none;
    color: #7d4cff;
    padding: 14px 40px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-cta-white::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent, rgba(125, 76, 255, 0.05), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: 0.6s;
}

.btn-cta-white:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-cta-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.20);
    color: #6339e6;
}

/* ----- Floating Decorations ----- */
.float-deco {
    position: absolute;
    pointer-events: none;
    animation: floatDeco 5s ease-in-out infinite;
}

.float-deco-1 {
    top: 10%;
    left: 5%;
    font-size: 40px;
    opacity: 0.06;
    animation-delay: 0s;
}

.float-deco-2 {
    bottom: 15%;
    right: 8%;
    font-size: 30px;
    opacity: 0.05;
    animation-delay: 1.5s;
}

@keyframes floatDeco {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .taxi-page {
        padding: 30px 0 50px;
    }

    .taxi-hero {
        padding: 32px 24px;
    }

    .taxi-hero::before {
        font-size: 140px;
    }

    .taxi-hero h1 {
        font-size: 2.2rem;
    }

    .taxi-card {
        padding: 20px 16px;
    }

    .cta-taxi h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .taxi-hero {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .taxi-hero h1 {
        font-size: 1.8rem;
    }

    .taxi-hero .hero-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .taxi-card .card-price {
        font-size: 1.2rem;
    }

    .cta-taxi {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .cta-taxi h2 {
        font-size: 1.5rem;
    }

    .why-item {
        padding: 14px 16px;
    }

    .step-item {
        padding: 16px 12px;
    }

    .float-deco {
        display: none;
    }
}

@media (max-width: 576px) {
    .taxi-page {
        padding: 20px 0 40px;
    }

    .taxi-hero h1 {
        font-size: 1.5rem;
    }

    .taxi-hero p {
        font-size: 0.95rem;
    }

    .btn-taxi-hero {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }

    .taxi-card {
        padding: 16px 12px;
        border-radius: 18px;
    }

    .taxi-card .card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .taxi-card .card-title {
        font-size: 1rem;
    }

    .taxi-card .card-price {
        font-size: 1.1rem;
    }

    .taxi-card .btn-book {
        width: 100%;
        text-align: center;
    }

    .taxi-card .badge-popular {
        font-size: 10px;
        padding: 3px 10px;
    }

    .taxi-card .card-graphic {
        font-size: 50px;
    }

    .cta-taxi h2 {
        font-size: 1.3rem;
    }

    .btn-cta-white {
        width: 100%;
        text-align: center;
    }

    .testimonial-taxi {
        padding: 18px 16px;
    }

    .why-item {
        padding: 12px 14px;
    }

    .step-item .step-number {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* ----- Food Page ----- */
.food-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;
}

.food-page.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blur Circles */
.food-page::before,
.food-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.food-page::before {
    width: 600px;
    height: 600px;
    background: rgba(125, 76, 255, 0.05);
    top: -250px;
    right: -200px;
}

.food-page::after {
    width: 500px;
    height: 500px;
    background: rgba(125, 76, 255, 0.04);
    bottom: -200px;
    left: -200px;
}

.food-page .container {
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.subtitle-badge {
    background: rgba(125, 76, 255, 0.10);
    color: #7d4cff;
    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: #7d4cff !important;
}

/* ----- Hero Section ----- */
.food-hero {
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 76, 255, 0.06);
}

.food-hero::before {
    content: '🥗';
    position: absolute;
    font-size: 200px;
    right: -30px;
    bottom: -50px;
    opacity: 0.06;
    transform: rotate(-10deg);
}

.food-hero .hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(125, 76, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #7d4cff;
    margin-bottom: 16px;
    animation: pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.food-hero h1 {
    font-weight: 800;
    color: #1e1a2b;
}

.food-hero .hero-highlight {
    background: linear-gradient(135deg, #7d4cff, #6339e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.food-hero p {
    color: #5e576d;
    max-width: 480px;
}

.btn-food-hero {
    background: #7d4cff;
    border: none;
    color: white;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-food-hero::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: 0.6s;
}

.btn-food-hero:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-food-hero:hover {
    background: #6339e6;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(125, 76, 255, 0.35);
    color: white;
}

/* ----- Food Cards ----- */
.food-card {
    background: white;
    border-radius: 24px;
    padding: 28px 24px;
    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;
    text-align: center;
}

.food-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;
}

.food-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(125, 76, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: 0.6s;
}

.food-card:hover {
    transform: translateY(-10px);
    border-color: rgba(125, 76, 255, 0.15);
    box-shadow: 0 20px 60px rgba(125, 76, 255, 0.10);
}

.food-card:hover::before {
    opacity: 1;
}

.food-card:hover::after {
    transform: scale(1.5);
}

.food-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #7d4cff;
    margin: 0 auto 16px;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.food-card:hover .card-icon {
    background: linear-gradient(135deg, #7d4cff 0%, #6339e6 100%);
    color: white;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.25);
}

.food-card .card-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1e1a2b;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.food-card .card-desc {
    font-size: 14px;
    color: #5e576d;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.food-card .card-price {
    font-weight: 700;
    font-size: 1.5rem;
    color: #7d4cff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.food-card .card-price small {
    font-size: 14px;
    font-weight: 400;
    color: #a59db3;
}

.food-card .card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.food-card .card-features .feature-tag {
    background: #f4f0ff;
    color: #7d4cff;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 500;
    transition: 0.3s;
}

.food-card:hover .feature-tag {
    background: #e8e0ff;
}

.food-card .btn-subscribe {
    background: #7d4cff;
    border: none;
    color: white;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.food-card .btn-subscribe::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.food-card .btn-subscribe:hover::after {
    transform: translateX(100%);
}

.food-card .btn-subscribe:hover {
    background: #6339e6;
    transform: scale(1.04);
    color: white;
}

.food-card .badge-popular {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.food-card .card-graphic {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 80px;
    opacity: 0.03;
    pointer-events: none;
    transform: rotate(10deg);
}

/* ----- Nutritional Benefits ----- */
.benefit-item {
    text-align: center;
    padding: 20px 16px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.4s;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-6px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.08);
}

.benefit-item .benefit-icon {
    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: #7d4cff;
    margin: 0 auto 12px;
    transition: 0.3s;
}

.benefit-item:hover .benefit-icon {
    background: #7d4cff;
    color: white;
    transform: scale(1.05) rotate(-4deg);
}

.benefit-item .benefit-title {
    font-weight: 600;
    font-size: 14px;
    color: #1e1a2b;
    margin-bottom: 4px;
}

.benefit-item .benefit-desc {
    font-size: 13px;
    color: #a59db3;
    margin-bottom: 0;
}

/* ----- Why Choose Section ----- */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 76, 255, 0.02) 0%, transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.why-item:hover {
    transform: translateX(8px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 8px 24px rgba(125, 76, 255, 0.06);
}

.why-item:hover::before {
    opacity: 1;
}

.why-item .why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #f4f0ff 0%, #e8e0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d4cff;
    font-size: 20px;
    transition: 0.3s;
}

.why-item:hover .why-icon {
    background: #7d4cff;
    color: white;
    transform: scale(1.05) rotate(-4deg);
}

.why-item .why-text {
    font-weight: 600;
    color: #1e1a2b;
    font-size: 14px;
    margin-bottom: 2px;
}

.why-item .why-desc {
    font-size: 13px;
    color: #a59db3;
    margin-bottom: 0;
}

/* ----- How It Works ----- */
.step-item {
    text-align: center;
    padding: 24px 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(125, 76, 255, 0.06);
    transition: 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 76, 255, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.step-item:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 76, 255, 0.12);
    box-shadow: 0 16px 48px rgba(125, 76, 255, 0.08);
}

.step-item:hover::before {
    opacity: 1;
}

.step-item .step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #7d4cff 0%, #6339e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 14px;
    box-shadow: 0 8px 30px rgba(125, 76, 255, 0.20);
    transition: 0.3s;
}

.step-item:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.30);
}

.step-item .step-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.step-item .step-title {
    font-weight: 600;
    font-size: 16px;
    color: #1e1a2b;
    margin-bottom: 4px;
}

.step-item .step-desc {
    font-size: 13px;
    color: #a59db3;
    margin-bottom: 0;
}

/* ----- Testimonial Section ----- */
.testimonial-food {
    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: 0.3s;
    height: 100%;
    position: relative;
}

.testimonial-food::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(125, 76, 255, 0.06);
    font-family: Georgia, serif;
}

.testimonial-food:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(125, 76, 255, 0.08);
    border-color: rgba(125, 76, 255, 0.10);
}

.testimonial-food .testimonial-text {
    font-size: 15px;
    color: #5e576d;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-food .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.testimonial-food .testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(125, 76, 255, 0.10);
    transition: 0.3s;
}

.testimonial-food:hover .testimonial-author img {
    border-color: #7d4cff;
}

.testimonial-food .testimonial-author .author-name {
    font-weight: 600;
    font-size: 14px;
    color: #1e1a2b;
}

.testimonial-food .testimonial-author .author-role {
    font-size: 13px;
    color: #a59db3;
}

.testimonial-food .testimonial-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* ----- CTA Section ----- */
.cta-food {
    background: linear-gradient(135deg, #7d4cff 0%, #4a1fa6 100%);
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-food::before {
    content: '🥗';
    position: absolute;
    font-size: 200px;
    right: -30px;
    bottom: -50px;
    opacity: 0.06;
}

.cta-food::after {
    content: '🐾';
    position: absolute;
    font-size: 100px;
    left: -20px;
    top: -30px;
    opacity: 0.04;
}

.cta-food .cta-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    animation: pulseIcon 3s ease-in-out infinite;
}

.cta-food h2 {
    font-weight: 800;
    font-size: 2.2rem;
}

.cta-food p {
    opacity: 0.85;
    max-width: 480px;
    margin: 0 auto 24px;
}

.btn-cta-white {
    background: white;
    border: none;
    color: #7d4cff;
    padding: 14px 40px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-cta-white::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent, rgba(125, 76, 255, 0.05), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: 0.6s;
}

.btn-cta-white:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-cta-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.20);
    color: #6339e6;
}

/* ----- Floating Decorations ----- */
.float-deco {
    position: absolute;
    pointer-events: none;
    animation: floatDeco 5s ease-in-out infinite;
}

.float-deco-1 {
    top: 10%;
    left: 5%;
    font-size: 40px;
    opacity: 0.06;
    animation-delay: 0s;
}

.float-deco-2 {
    bottom: 15%;
    right: 8%;
    font-size: 30px;
    opacity: 0.05;
    animation-delay: 1.5s;
}

@keyframes floatDeco {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .food-page {
        padding: 30px 0 50px;
    }

    .food-hero {
        padding: 32px 24px;
    }

    .food-hero::before {
        font-size: 140px;
    }

    .food-hero h1 {
        font-size: 2.2rem;
    }

    .food-card {
        padding: 20px 16px;
    }

    .cta-food h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .food-hero {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .food-hero h1 {
        font-size: 1.8rem;
    }

    .food-hero .hero-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .food-card .card-price {
        font-size: 1.2rem;
    }

    .cta-food {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .cta-food h2 {
        font-size: 1.5rem;
    }

    .why-item {
        padding: 14px 16px;
    }

    .step-item {
        padding: 16px 12px;
    }

    .float-deco {
        display: none;
    }
}

@media (max-width: 576px) {
    .food-page {
        padding: 20px 0 40px;
    }

    .food-hero h1 {
        font-size: 1.5rem;
    }

    .food-hero p {
        font-size: 0.95rem;
    }

    .btn-food-hero {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }

    .food-card {
        padding: 16px 12px;
        border-radius: 18px;
    }

    .food-card .card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .food-card .card-title {
        font-size: 1rem;
    }

    .food-card .card-price {
        font-size: 1.1rem;
    }

    .food-card .btn-subscribe {
        width: 100%;
        text-align: center;
    }

    .food-card .badge-popular {
        font-size: 10px;
        padding: 3px 10px;
    }

    .food-card .card-graphic {
        font-size: 50px;
    }

    .cta-food h2 {
        font-size: 1.3rem;
    }

    .btn-cta-white {
        width: 100%;
        text-align: center;
    }

    .testimonial-food {
        padding: 18px 16px;
    }

    .why-item {
        padding: 12px 14px;
    }

    .step-item .step-number {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .benefit-item {
        padding: 14px 12px;
    }
}