/* ====================================
        TABLET & SMALL LAPTOP
        max-width: 992px
==================================== */

@media (max-width: 992px) {


    /* General */

    :root {
        --section-padding: 80px;
    }


    h1 {
        font-size: 3rem;
    }


    h2 {
        font-size: 2.3rem;
    }


    /* =========================
            NAVBAR
    ========================= */

    .custom-navbar {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
        padding: 8px 0;
    }


    .navbar-collapse {
        background: var(--white-color);
        margin-top: 20px;
        padding: 30px;
        border-radius: var(--radius-medium);
        box-shadow: var(--shadow-soft);
    }


    .navbar-nav {
        gap: 25px;
        align-items: center;
    }


    .book-btn {
        margin-top: 25px;
        width: 100%;
        text-align: center;
    }


    /* =========================
            HERO
    ========================= */


    .hero-content {
        padding-top: 140px;
        text-align: center;
    }


    .hero-text {
        max-width: 100%;
        margin-bottom: 50px;
    }


    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-image img {
        height: 550px;
    }


    .hero-image::before {
        width: 170px;
        height: 170px;
        top: -25px;
        right: -20px;
    }


    /* =========================
            SERVICES
    ========================= */


    .services-preview .col-md-4 {
        margin-bottom: 30px;
    }


    /* =========================
            FOOTER
    ========================= */


    .footer-content {
        flex-direction: column;
        text-align: center;
    }

}


/* ====================================
                MOBILE
        max-width: 768px
==================================== */

@media (max-width: 768px) {


    :root {
        --section-padding: 70px;
    }


    h1 {
        font-size: 2.4rem;
    }


    h2 {
        font-size: 2rem;
    }


    h3 {
        font-size: 1.3rem;
    }


    body {
        line-height: 1.7;
    }


    /* Hero */

    .hero-content {
        padding-top: 120px;
    }


    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }


    .hero-text p {
        font-size: 1rem;
    }


    .hero-image img {
        height: 430px;
        border-radius: var(--radius-medium);
    }


    .hero-image::before {
        width: 120px;
        height: 120px;
        top: -15px;
        right: -10px;
    }


    /* Service Cards */

    .service-card img {
        height: 240px;
    }


    .service-card h3,
    .service-card p,
    .service-card span {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* Testimonials */

    .testimonial-box p {
        font-size: 1.5rem;
    }


    /* Buttons */

    .btn {
        padding: 12px 28px;
    }

}


/* ====================================
            SMALL MOBILE
        max-width: 576px
==================================== */

@media (max-width: 576px) {


    :root {
        --section-padding: 60px;
    }


    h1 {
        font-size: 2rem;
    }


    h2 {
        font-size: 1.7rem;
    }


    .container {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* Navbar */

    .logo {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }


    .navbar-collapse {
        padding: 20px;
    }


    .nav-link {
        font-size: 0.9rem;
    }


    /* Hero */

    .hero-content {
        padding-top: 110px;
    }


    .hero-image img {
        height: 360px;
    }


    /* Philosophy */

    .philosophy-text p {
        font-size: 1rem;
    }


    /* Why Us */

    .why-us h3 {
        font-size: 2rem;
    }


    /* Testimonial */

    .testimonial-box p {
        font-size: 1.25rem;
    }


    .testimonial-box h4 {
        font-size: 1rem;
    }


    /* Footer */

    footer {
        padding: 60px 0 30px;
    }


    .footer-content h3 {
        font-size: 1.6rem;
    }

}


/* ====================================
        VERY SMALL DEVICES
        max-width: 360px
==================================== */

@media (max-width: 360px) {


    h1 {
        font-size: 1.7rem;
    }


    h2 {
        font-size: 1.5rem;
    }


    .hero-image img {
        height: 300px;
    }


    .btn {
        width: 100%;
    }

}

/* ====================================
        SERVICES RESPONSIVE
==================================== */

@media (max-width: 992px) {

    .filter-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .services-hero {
        min-height: 55vh;
    }

    .services-hero h1 {
        font-size: 2.8rem;
    }

}

@media (max-width: 768px) {

    .filter-section {
        margin-top: -40px;
    }


    .filter-wrapper {
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }


    .filter-wrapper input,
    .filter-wrapper select {
        width: 100%;
        height: 50px;
    }


    .services-hero {
        min-height: 45vh;
        padding: 100px 0 50px;
    }


    .services-hero span {
        letter-spacing: 3px;
        font-size: 0.85rem;
    }


    .services-hero p {
        font-size: 1rem;
    }


    .category-card {
        margin-bottom: 25px;
    }


    .service-actions {
        flex-direction: column;
    }

}

@media (max-width: 576px) {

    .services-hero h1 {
        font-size: 2rem;
    }


    .filter-wrapper {
        border-radius: var(--radius-small);
    }


    .service-card img {
        height: 230px;
    }


    .service-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

}

/* ====================================
        SERVICE DETAIL RESPONSIVE
==================================== */

@media (max-width: 992px) {


    /* Hero */

    .service-hero {
        min-height: 50vh;
    }


    .service-hero h1 {
        font-size: 3rem;
    }


    /* Overview */

    .service-image {
        margin-bottom: 40px;
    }


    .service-image img {
        height: 500px;
    }


    .service-info-box {
        padding: 35px;
    }


    .service-meta {
        grid-template-columns: repeat(3, 1fr);
    }


    /* Timeline */

    .process-timeline {
        gap: 15px;
    }


    .process-item span {
        width: 70px;
        height: 70px;

        font-size: 1.2rem;
    }


    .process-item h3 {
        font-size: 1.1rem;
    }


}

@media (max-width: 768px) {


    /* Hero */

    .service-hero {
        min-height: 45vh;
        padding: 100px 0 60px;
    }


    .service-hero span {
        letter-spacing: 3px;
        font-size: 0.85rem;
    }


    .service-hero p {
        font-size: 1rem;
    }


    /* Image */

    .service-image img {
        height: 350px;
    }


    /* Info Box */

    .service-info-box {
        padding: 30px 25px;
    }


    .service-meta {
        grid-template-columns: 1fr;
    }


    /* Timeline */

    .process-timeline {

        flex-direction: column;

        align-items: center;

        gap: 40px;
    }


    .process-timeline::before {
        display: none;
    }


    .process-item p {
        max-width: 100%;
    }


    /* Care */

    .care-card {
        padding: 35px 25px;
    }


    /* Related Services */

    .related-card img {
        height: 230px;
    }


    /* CTA */

    .service-cta {
        padding: 80px 20px;
    }


}

@media (max-width: 576px) {


    /* Hero */

    .service-hero h1 {
        font-size: 2rem;
    }


    .service-hero p {
        font-size: 0.95rem;
    }


    /* Overview */

    .service-image img {
        height: 280px;
    }


    .service-category {
        font-size: 0.8rem;
    }


    .service-info-box h2 {
        font-size: 1.8rem;
    }


    /* Benefit Cards */

    .benefit-card {
        padding: 35px 25px;
    }


    .benefit-card h3 {
        font-size: 2.3rem;
    }


    /* FAQ */

    .service-faq .accordion-button {
        padding: 20px;
        font-size: 0.95rem;
    }


    .service-faq .accordion-body {
        padding: 20px;
    }


    /* Reviews */

    .review-card {
        padding: 35px 25px;
    }


    /* Buttons */

    .hero-btn,
    .service-cta .cta-btn,
    .related-card .btn {
        width: 100%;
        text-align: center;
    }


}

/* ====================================
            BOOKING RESPONSIVE
==================================== */

@media (max-width: 992px) {


    /* Hero */

    .booking-hero {
        min-height: 45vh;
    }


    .booking-hero h1 {
        font-size: 3rem;
    }


    /* Service Cards */

    .booking-service-card img {
        height: 220px;
    }


    .booking-service-card p {
        min-height: auto;
    }


    /* Customer Form */

    .customer-form {
        padding: 40px;
    }


    /* Summary */

    .booking-summary {
        grid-template-columns: 1fr;
        gap: 25px;
    }


}

@media (max-width: 768px) {


    /* Hero */

    .booking-hero {
        min-height: 40vh;
        padding: 100px 0 70px;
    }


    .booking-hero h1 {
        font-size: 2.4rem;
    }


    .booking-hero p {
        font-size: .95rem;
    }


    /* Progress */

    .booking-progress {

        scroll-snap-type: x mandatory;

    }

    .progress-step {

        scroll-snap-align: start;

    }

    .booking-progress {
        overflow-x: auto;

        justify-content: flex-start;

        padding-bottom: 15px;

        scrollbar-width: none;
    }


    .booking-progress::-webkit-scrollbar {
        display: none;
    }


    .progress-step {
        min-width: 85px;
    }


    .progress-step span {
        width: 45px;
        height: 45px;
    }


    .progress-line {
        width: 45px;
    }


    /* Date */

    .date-selection {
        padding: 30px 25px;
    }


    /* Time */

    .time-slots {
        gap: 15px;
    }


    .time-slot {
        min-width: 100px;
        height: 50px;
    }


    /* Customer */

    .customer-form {
        padding: 35px 25px;
    }


    /* Actions */

    .booking-actions {
        flex-direction: column;
        align-items: stretch;
    }


    .booking-actions .btn {
        width: 100%;
    }


}

@media (max-width: 576px) {


    /* Hero */

    .booking-hero h1 {
        font-size: 2rem;
    }


    .booking-hero span {
        font-size: .8rem;

        letter-spacing: 2px;
    }


    /* Service */

    .booking-service-card img {
        height: 200px;
    }


    .booking-service-card .service-content {
        padding: 22px;
    }


    .booking-service-card h3 {
        font-size: 1.25rem;
    }


    /* Progress */

    .progress-step p {
        font-size: .75rem;
    }


    /* Form */

    .customer-form {
        padding: 25px 18px;
    }


    .customer-form label {
        font-size: .9rem;
    }


    /* Summary */

    .summary-card,
    .confirmation-info {
        padding: 30px 22px;
    }


    .summary-item {
        font-size: .9rem;
    }


    .summary-item.total strong {
        font-size: 1.1rem;
    }


    /* Confirm Button */

    .confirm-btn {
        height: 52px;
    }


}

/* ====================================
        GALLERY RESPONSIVE
==================================== */

@media (max-width: 992px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .gallery-item.wide {

        grid-column: span 2;

    }

    .before-after-container {

        height: 500px;

    }

    .result-details {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .video-content {

        text-align: center;

        margin-bottom: 50px;

    }

    .video-content p {

        margin-left: auto;

        margin-right: auto;

    }

}

@media (max-width: 768px) {

    .gallery-hero {

        min-height: 50vh;

    }

    .gallery-hero h1 {

        font-size: 2.4rem;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 260px;

    }

    .gallery-item.large,
    .gallery-item.wide {

        grid-column: auto;

        grid-row: auto;

    }

    .gallery-overlay {

        opacity: 1;

    }

    .gallery-overlay {

        padding: 20px;

    }

    .before-after-container {

        height: 380px;

    }

    .slider-handle {

        width: 60px;

        height: 60px;

    }

    .big-play-button {

        width: 85px;

        height: 85px;

        font-size: 1.8rem;

    }

    .cta-buttons {

        flex-direction: column;

        align-items: center;

    }

    .cta-buttons .btn {

        width: 100%;

        max-width: 320px;

    }

}

@media (max-width: 576px) {

    .gallery-hero h1 {

        font-size: 2rem;

    }

    .gallery-hero p {

        font-size: .95rem;

    }

    .filter-btn {

        width: 100%;

    }

    .gallery-grid {

        gap: 18px;

    }

    .before-after-container {

        height: 300px;

    }

    .detail-box {

        padding: 25px;

    }

    .gallery-modal img,
    .gallery-modal video {

        max-width: 95%;

    }

    .modal-close {

        top: 15px;

        right: 15px;

    }

}

/* ====================================
        DASHBOARD
==================================== */

@media (max-width: 992px) {

    .dashboard-sidebar {

        position: fixed;

        left: -320px;

        top: 0;

        z-index: 9999;

        transition: .3s ease;

    }

    .dashboard-sidebar.active {

        left: 0;

    }

    .sidebar-toggle {

        display: flex;

        align-items: center;

        justify-content: center;

    }

    .dashboard-content {

        width: 100%;

        padding: 30px;

    }

}

@media (max-width: 992px) {

    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

@media (max-width: 576px) {

    .stats-grid {

        grid-template-columns:
            1fr;

    }

}

@media (max-width:768px) {

    .actions-grid {

        grid-template-columns: 1fr;

    }

}

@media (max-width:768px) {

    .recommendation-grid {

        grid-template-columns: 1fr;

    }

}

@media (max-width:768px) {

    .welcome-card {

        flex-direction: column;

        text-align: center;

        gap: 25px;

        padding: 35px 25px;

    }

}

@media (max-width:768px) {

    .appointment-card {

        flex-direction: column;

        align-items: flex-start;

    }

    .appointment-meta {

        width: 100%;

        gap: 20px;

    }

    .appointment-actions {

        width: 100%;

    }

    .appointment-actions .btn {

        flex: 1;

    }

}

@media(max-width:576px) {

    .gallery-filters {

        display: flex;

        flex-direction: column;

        gap: 10px;

    }

}

@media(max-width:992px) {

    .navbar-actions {

        width: 100%;

        margin-top: 20px;

        flex-direction: column;

        gap: 15px;

    }

}

.service-meta {
    grid-template-columns: 1fr;
}

@media(max-width:576px) {

    .service-info-box {

        padding: 20px;

    }

}


@media (max-width: 768px) {

    .specialists-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px) {

    .logo img {

        width: 60px;

    }

}


@media(max-width:768px) {

    .filter-section {

        display: none;

    }

    .floating-filter-btn {

        display: flex;

    }

}


@media(max-width:768px) {

    .error-hero {

        padding: 70px 0 60px;

    }

    .error-hero h1 {

        font-size: 5rem;

    }

    .error-card {

        padding: 35px 25px;

    }

    .error-icon {

        width: 90px;

        height: 90px;

    }

    .error-icon i {

        font-size: 2.3rem;

    }

    .error-actions {

        flex-direction: column;

    }

    .error-actions .btn {

        width: 100%;

    }

}


@media (max-width: 767px) {

    .packages-section {
        padding: 70px 0;
    }

    .packages-section .section-title {
        margin-bottom: 40px;
    }

    .package-image {
        height: 230px;
    }

    .package-content {
        padding: 24px 22px 25px;
    }

    .package-content h3 {
        font-size: 20px;
    }

    .package-actions {
        flex-direction: column;
    }

    .package-actions .btn {
        width: 100%;
    }

}


/* =========================================================
   PACKAGE DETAIL RESPONSIVE
========================================================= */


/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {


    /* =========================
       PACKAGE HERO
    ========================= */

    .package-hero {
        min-height: auto;
        padding: 90px 0 80px;
    }


    .package-hero-content {
        max-width: 700px;
    }


    .package-hero-content h1 {
        font-size: 48px;
    }


    .package-hero-content p {
        font-size: 16px;
        max-width: 600px;
    }


    .package-hero-bottom {
        flex-wrap: wrap;
        gap: 25px;
    }



    /* =========================
       PACKAGE INTRO
    ========================= */

    .package-intro {
        padding: 80px 0;
    }


    .package-main-image {
        max-width: 650px;
        margin: 0 auto;
    }


    .package-intro-content {
        padding-top: 20px;
    }


    .package-intro-content h2 {
        font-size: 38px;
    }



    /* =========================
       INCLUDED SERVICES
    ========================= */

    .included-services {
        padding: 80px 0;
    }


    .included-service-card {
        grid-template-columns: 70px 180px 1fr;
    }


    .included-service-number {
        font-size: 26px;
    }



    /* =========================
       PACKAGE VALUE
    ========================= */

    .package-value {
        padding: 80px 0;
    }


    .value-content h2 {
        font-size: 38px;
    }


    .package-price-card {
        margin-top: 20px;
    }



    /* =========================
       BENEFITS
    ========================= */

    .package-benefits {
        padding: 80px 0;
    }


    .package-benefit-card {
        min-height: 260px;
    }



    /* =========================
       PROCESS
    ========================= */

    .package-process {
        padding: 80px 0;
    }


    .package-process-grid {
        gap: 25px;
    }



    /* =========================
       REVIEWS
    ========================= */

    .package-reviews {
        padding: 80px 0;
    }


    /* =========================
       RELATED PACKAGES
    ========================= */

    .related-packages {
        padding: 80px 0;
    }


    /* =========================
       CTA
    ========================= */

    .package-cta {
        padding: 90px 0;
    }


    .package-cta-content h2 {
        font-size: 40px;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {


    /* =========================
       HERO
    ========================= */

    .package-hero {
        padding: 65px 0 60px;
    }


    .package-hero-content {
        text-align: center;
    }


    .package-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }


    .package-hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
        margin-top: 12px;
    }


    .package-hero-content p {
        font-size: 14px;
        line-height: 1.8;
    }


    .package-hero-bottom {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }


    .package-price {
        text-align: center;
    }


    .package-price strong {
        font-size: 32px;
    }


    .package-hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }



    /* =========================
       INTRO
    ========================= */

    .package-intro {
        padding: 60px 0;
    }


    .package-main-image {
        margin-bottom: 20px;
    }


    .package-image-badge {
        font-size: 11px;
        padding: 8px 12px;
    }


    .package-intro-content {
        text-align: center;
        padding-top: 10px;
    }


    .package-intro-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }


    .package-intro-content p {
        font-size: 14px;
        line-height: 1.9;
    }


    .package-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 30px;
    }


    .package-highlight {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }


    .highlight-icon {
        margin: 0 auto;
    }


    .package-highlight strong {
        display: block;
        font-size: 17px;
    }


    .package-highlight span {
        display: block;
        font-size: 10px;
        line-height: 1.5;
    }


    .package-book-btn {
        width: 100%;
        margin-top: 25px;
    }



    /* =========================
       SECTION TITLE
    ========================= */

    .package-detail .section-title h2,
    .package-detail-section .section-title h2 {
        font-size: 28px;
    }



    /* =========================
       INCLUDED SERVICES
    ========================= */

    .included-services {
        padding: 60px 0;
    }


    .included-services-list {
        margin-top: 35px;
    }


    .included-service-card {
        display: flex;
        flex-direction: column;
        padding: 0;
        overflow: hidden;
    }


    .included-service-number {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 2;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }


    .included-service-image {
        width: 100%;
        height: 210px;
    }


    .included-service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .included-service-content {
        padding: 22px 20px;
    }


    .included-service-heading {
        gap: 15px;
        align-items: flex-start;
    }


    .included-service-heading h3 {
        font-size: 20px;
        line-height: 1.4;
    }


    .included-service-heading>strong {
        font-size: 17px;
        white-space: nowrap;
    }


    .included-service-content p {
        font-size: 13px;
        line-height: 1.8;
    }


    .included-service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }



    /* =========================
       PACKAGE VALUE
    ========================= */

    .package-value {
        padding: 60px 0;
    }


    .value-content {
        text-align: center;
    }


    .value-content h2 {
        font-size: 30px;
    }


    .value-content p {
        font-size: 14px;
        line-height: 1.9;
    }


    .value-list {
        text-align: left;
        padding-left: 0;
        margin-top: 25px;
    }


    .value-list li {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 12px;
    }


    .package-price-card {
        margin-top: 10px;
        padding: 25px 20px;
    }


    .package-price-card h3 {
        font-size: 23px;
    }


    .price-card-item {
        font-size: 13px;
    }


    .price-card-total strong {
        font-size: 28px;
    }


    .package-price-btn {
        width: 100%;
    }



    /* =========================
       BENEFITS
    ========================= */

    .package-benefits {
        padding: 60px 0;
    }


    .package-benefit-card {
        min-height: auto;
        padding: 28px 22px;
        text-align: center;
    }


    .package-benefit-card .benefit-icon {
        margin: 15px auto;
    }


    .package-benefit-card h3 {
        font-size: 20px;
    }


    .package-benefit-card p {
        font-size: 13px;
        line-height: 1.8;
    }



    /* =========================
       PROCESS
    ========================= */

    .package-process {
        padding: 60px 0;
    }


    .package-process-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .package-process-item {
        text-align: center;
    }


    .process-number {
        margin: 0 auto 15px;
    }


    .package-process-item h3 {
        font-size: 20px;
    }


    .package-process-item p {
        font-size: 13px;
        line-height: 1.8;
    }



    /* =========================
       FAQ
    ========================= */

    .package-faq {
        padding: 60px 0;
    }


    .package-faq .accordion-button {
        font-size: 14px;
        padding: 17px 15px;
    }


    .package-faq .accordion-body {
        font-size: 13px;
        line-height: 1.8;
        padding: 15px;
    }



    /* =========================
       REVIEWS
    ========================= */

    .package-reviews {
        padding: 60px 0;
    }


    .package-review-card {
        padding: 25px 20px;
    }


    .package-review-card p {
        font-size: 13px;
        line-height: 1.8;
    }



    /* =========================
       RELATED PACKAGES
    ========================= */

    .related-packages {
        padding: 60px 0;
    }


    .related-package-card {
        margin-bottom: 5px;
    }


    .related-package-content {
        padding: 20px;
    }


    .related-package-content h3 {
        font-size: 20px;
    }


    .related-package-content p {
        font-size: 13px;
        line-height: 1.8;
    }


    .related-package-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }



    /* =========================
       FINAL CTA
    ========================= */

    .package-cta {
        padding: 65px 20px;
    }


    .package-cta-content {
        text-align: center;
    }


    .package-cta-content h2 {
        font-size: 30px;
        line-height: 1.35;
    }


    .package-cta-content p {
        font-size: 14px;
        line-height: 1.8;
    }


    .package-cta-content .cta-btn {
        width: 100%;
        max-width: 300px;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .package-hero-content h1 {
        font-size: 30px;
    }


    .package-hero {
        padding: 50px 0;
    }


    .package-highlights {
        gap: 5px;
    }


    .package-highlight {
        padding: 8px 3px;
    }


    .included-service-image {
        height: 180px;
    }


    .included-service-heading {
        flex-direction: column;
        gap: 8px;
    }


    .included-service-heading>strong {
        font-size: 18px;
    }


    .package-intro-content h2,
    .value-content h2 {
        font-size: 27px;
    }


    .package-cta-content h2 {
        font-size: 27px;
    }

}

@media (max-width: 768px) {

    .appointments-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}

@media (max-width: 768px) {

    .appointment-card-v2 {
        padding: 20px;
        border-radius: 18px;
    }

}

@media (max-width: 480px) {

    .appointment-top {
        align-items: flex-start;
        gap: 10px;
    }

    .appointment-id {
        font-size: .8rem;
        white-space: nowrap;
    }

}

@media (min-width: 481px) and (max-width: 768px) {

    .appointment-card-v2 .appointment-meta {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 480px) {

    .appointment-footer {
        flex-direction: column;
        gap: 10px;
    }

    .appointment-footer .btn {
        width: 100%;
    }

}

@media (max-width: 480px) {

    .appointment-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .tab-btn {
        padding: 11px 8px;
        font-size: .82rem;
        white-space: nowrap;
    }

}

@media (max-width: 480px) {

    .ticket-container {
        border-radius: 20px;
    }

    .ticket-header {
        padding: 28px 20px;
    }

    .ticket-body {
        padding: 22px 18px;
    }

}

@media (max-width: 480px) {

    .ticket-row {
        align-items: flex-start;
        gap: 15px;
    }

    .ticket-row span {
        flex-shrink: 0;
    }

    .ticket-row strong {
        text-align: right;
        overflow-wrap: anywhere;
    }

}