/* =========================
   ROOT VARIABLES - Peru Agency
========================== */
:root {
    --pa-base:#023d62;
    --pa-principal: #023E5C;
    --pa-gold: #D0AD6C;
    --pa-secundary:#ffdda1;
    --pa-dark: #101828;
    --pa-light: #FFFFFF;
    --pa-gray: #5a5a5a;
    --pa-terracotta: #A4472D;
    --max-width: 1300px;
    --padding-global: 1.5rem;
    --border-radius: 12px;
    --transition: all 0.35s ease;
    --shadow-general: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* =========================
   RESET / BASE
========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    max-width:1300px;
    margin: 0 auto;
}

html {
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--pa-dark);
    background-color: var(--pa-light);
    position: relative;
    /* overflow-x: hidden; */
}

h1, h2, h3, h4, h5, h6, strong, em, ul, ol,
blockquote, cite, label, textarea, select {
    font-family: 'Playfair Display', serif;
}

p, span, a, li, button, input {
    font-family: 'Inter', sans-serif;
    color: var(--pa-gray);
}

a {
    text-decoration: none;
    color: var(--pa-principal);
    transition: var(--transition);
}

a:hover {
    color: var(--pa-dark);
}

ul, ol {
    list-style: none;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button, input, select, textarea {
    font: inherit;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}

::selection {
    background: var(--pa-gold);
    color: var(--pa-light);
}

/* =========================
   ANIMACIONES
========================== */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.on-scroll {
    opacity: 0;
    transform: translateY(40px);
}

.on-scroll.visible {
    animation: fadeInUp 1.3s ease-out forwards;
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

.on-scroll-left {
    opacity: 0;
    transform: translateX(40px);
}

.on-scroll-left.visible {
    animation: fadeInLeft 1.3s ease-out forwards;
}
/* ===============================
   HEADER 
================================ */


.pa-site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    color: #fff;
    background: var(--pa-dark);
}

.pa-header-top {
    display: grid;
    grid-template-columns: 160px 1fr;
    padding: 6px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.pa-container-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa-brand {
    display: block;
    text-decoration: none;
}

.pa-brand-logo {
    width: 135px;
    height: auto;
    display: block;
}

.pa-container-right {
    display: flex;
    flex-direction: column-reverse;
    align-items: end;
    justify-content: flex-end;
    gap: 5px;
}

.pa-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pa-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
}
/* ===============================
   SOCIAL ICON COLORS
================================ */

.pa-socials a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pa-gold);
    text-decoration: none;
}

.pa-socials .pa-icon {
    width: 20px;
    height: 20px;
    display: block;
}

/* Forzar que el SVG use el color del enlace */
.pa-socials .pa-icon path,
.pa-socials .pa-icon circle,
.pa-socials .pa-icon rect,
.pa-socials .pa-icon polygon {
    fill: currentColor !important;
}
.pa-socials a[aria-label="Whatsapp"] {
    color: #09090b;
}
/* Facebook */
.pa-socials a[aria-label="Facebook"] {
    color: var(--pa-gold);
}

/* Instagram */
.pa-socials a[aria-label="Instagram"] {
    color:  var(--pa-gold);
}

/* YouTube */
.pa-socials a[aria-label="YouTube"] {
    color:  var(--pa-gold);
}

/* Tripadvisor */
.pa-socials a[aria-label="Tripadvisor"] {
    color:  var(--pa-gold);
}

/* Hover */
.pa-socials a:hover {
    transform: translateY(-2px);
}

.pa-icon {
    width: 25px;
    height: 25px;
    display: block;
}

.pa-why-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.pa-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 8px;
    border: 1px outset #0e548f;
    background: linear-gradient(135deg, #0b48a1, #156fb9);
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(11, 94, 215, 0.35);
    transition: all 0.25s ease;
    cursor: pointer;
}

.pa-whatsapp-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #084db3, #0d75d1);
    box-shadow: 0 12px 28px rgba(11, 94, 215, 0.45);
}

.pa-whatsapp-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(11, 94, 215, 0.3);
}

.pa-whatsapp-btn svg.pa-icon--whatsapp {
    fill: #ffffff;
    transition: transform 0.25s ease;
}

.pa-whatsapp-btn:hover svg.pa-icon--whatsapp {
    transform: scale(1.1);
}

.pa-whatsapp-btn span {
    color: #ffffff;
}


.pa-lang {
    position: relative;
}

.pa-lang-current {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pa-lang-current::-webkit-details-marker {
    display: none;
}

.pa-lang-current::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid var(--pa-gold);
}

.pa-lang-flag {
    width: 32px;
    height: 18px;
    object-fit: cover;
    display: block;
}

.pa-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1000;
    border: 1px solid var(--pa-gold);
    padding: 5px;
    display: grid;
    gap: 6px;
}

.pa-lang-item {
    display: block;
    padding: 4px;
}

/* NAV ROW */

.pa-header-nav {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 52px;
    max-width: 1300px;
    margin: 0 auto;
}

.pa-brand-claim {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pa-secundary);
    text-align: center;
    text-shadow: #1a1a1a 0.1em 0.1em 0.2em;
    font-size: 14px;
    line-height: 1.25;
}

.pa-main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #ffd22f26;
}

.pa-main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.pa-main-menu a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.pa-main-menu a:hover {
    color: var(--pa-gold);
}

/* DROPDOWN DESKTOP */

.pa-main-menu li {
    position: relative;
}

.pa-main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    list-style: none;
    margin: 0;
    padding: 10px;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.pa-main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pa-main-menu .sub-menu a {
    display: block;
    padding: 10px 12px;
    color: #101828;
    font-size: 14px;
}

/* MOBILE */

.pa-mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    color: #ffffff;
    cursor: pointer;
}

.pa-mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--pa-light);
}

.pa-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 40, 0.55);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.pa-mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.pa-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    padding: 28px;
    background: #ffffff;
    transform: translateX(100%);
    transition: 0.25s ease;
    z-index: 1001;
}

.pa-mobile-menu.is-open {
    transform: translateX(0);
}

.pa-mobile-menu-close {
    margin-left: auto;
    display: block;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.pa-mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pa-mobile-menu-list a {
    display: block;
    padding: 14px 0;
    color: #101828;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.pa-mobile-whatsapp {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10a64a;
    color: #ffffff;
    font-weight: 900;
    gap: 10px;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .pa-header-top {
        display: flex;
        justify-content: end;
        align-items: center;
        text-align: center;
    }

    .pa-header-nav {
        display: none;
    }

    .pa-brand-logo {
        width: 100px;
    }

    .pa-why-link,
    .pa-whatsapp-btn {
        display: none;
    }

    .pa-header-actions {
        margin-top: 0;
    }

    .pa-container-right {
        align-items: center;
        padding-right: 16px;
    }

    .pa-mobile-menu-toggle {
        display: block;
    }
}

/* =========================
   Footer 
========================== */
.site-footer {
    background-color: var(--pa-dark);
    color: #ffffff;
    padding: 60px 20px 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.footer-column h4, .footer-column h4 a {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--pa-gold);
    text-transform: uppercase;
}

.footer-column p {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Listas de enlaces */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--pa-gold);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1); 
    border-radius: 50%; 
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-socials a:nth-child(3) svg path,
.footer-socials a:nth-child(4) svg  path{
    fill: #ffffff !important;
}
@media (max-width: 1024px) {

    .site-footer {
        padding: 50px 20px 35px;
    }

    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px 25px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column ul {
        margin: 0;
        padding: 0;
    }

    .footer-column ul li {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 768px) {

    .site-footer {
        padding: 42px 18px 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 520px;
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    .footer-column h4 {
        margin-bottom: 14px;
        text-align: center;
    }

    .footer-column p {
        max-width: 420px;
        margin: 0 auto 10px;
        text-align: center;
    }

    .footer-column ul {
        width: 100%;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .footer-column ul li {
        margin-bottom: 9px;
        text-align: center;
    }

    .footer-column ul li a {
        display: inline-block;
        text-align: center;
    }

    .footer-socials {
        margin-top: 18px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-socials a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .footer-bottom {
        margin-top: 34px;
        padding-top: 18px;
        text-align: center;
        line-height: 1.6;
    }
}

@media (max-width: 430px) {

    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column p,
    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .footer-socials {
        gap: 10px;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
    }

    .footer-bottom {
        font-size: 0.82rem;
    }
}
/* Contenedor */
/* =========================
   SUSTAINABILITY
========================== */

.sustainability-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto  30px;
    padding: 40px 20px;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        minmax(0, 1.6fr);
    gap: 20px;
    align-items: stretch;
}

.item-sustainability {
    width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    /* background: #ffffff; */
    /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); */
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.item-sustainability:nth-child(3) {
    aspect-ratio: 16 / 9;
}

.item-sustainability:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.item-sustainability img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.3s ease;
}

.item-sustainability:hover img {
    /* transform: scale(1.02); */
}


/* =========================
   TABLET
========================== */

@media (max-width: 1024px) {

    .sustainability-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        padding: 32px 20px;
    }

    .item-sustainability {
        aspect-ratio: 4 / 3;
    }

    .item-sustainability:nth-child(3) {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 7;
    }
}

@media (max-width: 768px) {

    .sustainability-section {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        padding: 28px 16px;
    }

    .item-sustainability,
    .item-sustainability:nth-child(3) {
        grid-column: auto;

        width: 100%;
        max-width: 560px;
        margin: 0 auto;

        aspect-ratio: 4 / 3;
    }

    .item-sustainability:nth-child(3) {
        aspect-ratio: 16 / 10;
    }
}
@media (max-width: 430px) {

    .sustainability-section {
        gap: 16px;
        padding: 22px 12px;
    }

    .item-sustainability {
        border-radius: 7px;
        aspect-ratio: 4 / 3;
    }

    .item-sustainability:nth-child(3) {
        aspect-ratio: 4 / 3;
    }
}

@media (min-width: 992px) {

    .pa-header-nav {
        position: relative;
        overflow: visible;
    }
    .pa-tours-mega__categories a {
        color: var(--pa-principal);
    }
    
    .pa-tours-mega__categories a:hover {
        color: var(--pa-dark);
    }
    .pa-main-navigation,
    .pa-main-menu {
        position: static;
    }

    .pa-main-menu > li.pa-mega-tours {
        position: static;
    }
    .pa-main-menu > li.pa-mega-tours > .sub-menu {
        display: none !important;
    }

    .pa-tours-mega {
        position: absolute;
        z-index: 1000;
        top: calc(100% - 1px);
        left: 0;
    
        display: grid;
        grid-template-columns: minmax(0, 1fr) 310px;
    
        width: 100%;
        min-height: 390px;
        padding: 28px;
    
        background: #ffffff;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    
        transition:
            opacity 0.22s ease,
            visibility 0.22s ease;
    }
    .pa-tours-mega::before {
        content: "";
        position: absolute;
        top: -12px;
        left: 0;
        width: 100%;
        height: 12px;
    }
    .pa-main-menu > li.pa-mega-tours:hover > .pa-tours-mega,
    .pa-main-menu > li.pa-mega-tours:focus-within > .pa-tours-mega {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* COLUMNA IZQUIERDA */

    .pa-tours-mega__main {
        min-width: 0;
        padding-right: 30px;
    }

    .pa-tours-mega__heading {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;

        margin: 0 0 34px;
        color: #222222;

        font-size: 26px;
        font-weight: 400;
        line-height: 1.2;
    }

    .pa-tours-mega__heading strong {
        color: var(--pa-terracotta);
        font-weight: 700;
    }

    .pa-tours-mega__panel[hidden] {
        display: none !important;
    }

    .pa-tours-mega__cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    /* TARJETA */

    .pa-mega-tour-card {
        display: block;
        min-width: 0;
        color: #222222;
        text-decoration: none;
    }

    .pa-mega-tour-card__media {
        width: 100%;
        margin-bottom: 9px;
        overflow: hidden;
        border-radius: 8px;
        background: #eeeeee;
        aspect-ratio: 1.55 / 1;
    }

    .pa-mega-tour-card__image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
    }

    .pa-mega-tour-card:hover .pa-mega-tour-card__image {
        transform: scale(1.04);
    }

    .pa-mega-tour-card__title {
        margin: 0 0 6px;
        color: #222222;
        font-size: 19px;
        font-weight: 400;
        line-height: 1.08;
    }

    .pa-mega-tour-card__price {
        color: #333333;
        font-size: 13px;
        line-height: 1.3;
    }

    .pa-mega-tour-card__price del {
        margin-right: 5px;
        opacity: 0.6;
    }

    .pa-mega-tour-card__price ins {
        text-decoration: none;
    }

    /* COLUMNA DERECHA */

    .pa-tours-mega__sidebar {
        padding-left: 20px;
        border-left: 1px solid #d6d6d6;
    }

    .pa-tours-mega__title {
        margin: 0 0 27px;
        color: #222222;
        font-size: 26px;
        font-weight: 400;
        line-height: 1.2;
    }

    .pa-tours-mega__title::first-letter {
        color: var(--pa-terracotta);
    }

    .pa-tours-mega__categories {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pa-tours-mega__category {
        display: block;
        color: #222222;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.15;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .pa-tours-mega__category:hover,
    .pa-tours-mega__category:focus,
    .pa-tours-mega__category.is-active {
        color: var(--pa-dark);
    }

    .pa-tours-mega__empty {
        margin: 0;
        color: #555555;
        font-size: 15px;
    }
}

@media (max-width: 991px) {

    .pa-tours-mega {
        display: none !important;
    }
}
@media (max-width: 1024px) {

    .pa-header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding: 10px 10%;
        text-align: center;
    }

    .pa-why-link,
    .pa-header-top > .pa-container-right > .pa-whatsapp-btn {
        display: none;
    }

    /* Mostrar redes sociales */
    .pa-socials {
        display: none;
    }

    .pa-lang-current::after {
        border-left-width: 4px;
        border-right-width: 4px;
        border-top-width: 5px;
    }

    .pa-lang-flag {
        width: 24px;
        height: 16px;
        object-fit: cover;
    }


    .pa-lang-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4px;
        border-radius: 4px;
    }

    .pa-lang-item:hover {
        background: #f4f4f4;
    }

    /* Hamburguesa */
    .pa-mobile-menu-toggle {
        width: 38px;
        height: 38px;
        padding: 7px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 0 0 38px;
        border: 0;
        background: transparent;
    }

    .pa-mobile-menu-toggle span {
        width: 23px;
        height: 2px;
        margin: 3px auto;
        background: var(--pa-light);
        border-radius: 10px;
    }
}
@media (max-width: 430px) {



    .pa-header-actions {
        gap: 5px;
    }

    .pa-socials {
        gap: 3px;
    }

    .pa-socials a {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .pa-socials .pa-icon {
        width: 13px;
        height: 13px;
    }

    .pa-lang-current {
        min-width: 29px;
        min-height: 29px;
    }

    .pa-lang-flag {
        width: 22px;
        height: 15px;
    }

    .pa-mobile-menu-toggle {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        padding: 5px;
    }

    .pa-mobile-menu-toggle span {
        width: 21px;
    }
}

@media (max-width: 430px) {

    .pa-header-top {
        padding-left: 8px;
        padding-right: 8px;
        gap: 5px;
    }

    .pa-brand-logo {
        width: 80px;
    }

    .pa-header-actions {
        gap: 5px;
    }

    .pa-socials {
        gap: 3px;
    }

    .pa-socials a {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .pa-socials .pa-icon {
        width: 13px;
        height: 13px;
    }

    .pa-lang-current {
        min-width: 29px;
        min-height: 29px;
    }

    .pa-lang-flag {
        width: 22px;
        height: 15px;
    }

    .pa-mobile-menu-toggle {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        padding: 5px;
    }

    .pa-mobile-menu-toggle span {
        width: 21px;
    }
}
/* ========================================
   SUBMEN
======================================== */

.pa-mobile-menu {
    overflow-y: auto;
    visibility: hidden;
}

.pa-mobile-menu.is-open {
    visibility: visible;
}

.pa-mobile-menu-list,
.pa-mobile-menu-list .sub-menu {
    list-style: none;
}

.pa-mobile-menu-list li {
    position: relative;
    margin: 0;
    padding: 0;
}

.pa-mobile-menu-list li > a {
    padding-right: 48px;
}

.pa-submenu-toggle {
    position: absolute;
    top: 6px;
    right: 0;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--pa-base);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa-submenu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.pa-submenu-toggle span {
    width: 9px;
    height: 9px;
    display: block;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.25s ease;
}

.pa-mobile-menu-list
.menu-item-has-children.submenu-open
> .pa-submenu-toggle span {
    transform: translateY(2px) rotate(225deg);
}

.pa-mobile-menu-list .sub-menu {
    display: none;
    position: static;
    width: 100%;
    margin: 0;
    padding: 6px 0 10px 15px;
    background: #f7f7f7;
    border-radius: 6px;
    box-shadow: none;
}

.pa-mobile-menu-list
.menu-item-has-children.submenu-open
> .sub-menu {
    display: block;
}

.pa-mobile-menu-list .sub-menu li > a {
    padding: 11px 44px 11px 12px;
    color: #344054;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pa-mobile-menu-list .sub-menu .sub-menu {
    margin-left: 0;
    padding-left: 12px;
    background: #eeeeee;
}

.pa-mobile-menu-list .current-menu-item > a,
.pa-mobile-menu-list .current-menu-ancestor > a {
    color: var(--pa-base);
}

.pa-mobile-whatsapp span{
    color : #fff;
}